mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
eigen3_3: Fix darwin build
This commit is contained in:
parent
19332e4d52
commit
bc158d37fe
@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, cmake}:
|
||||
{stdenv, fetchurl, fetchpatch, cmake}:
|
||||
|
||||
let
|
||||
version = "3.3.4";
|
||||
@ -11,6 +11,15 @@ stdenv.mkDerivation {
|
||||
name = "eigen-${version}.tar.gz";
|
||||
sha256 = "1q85bgd6hnsgn0kq73wa4jwh4qdwklfg73pgqrz4zmxvzbqyi1j2";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Remove for > 3.3.4
|
||||
# Upstream commit from 6 Apr 2018 "Fix cmake scripts with no fortran compiler"
|
||||
(fetchpatch {
|
||||
url = "https://bitbucket.org/eigen/eigen/commits/ba14974d054ae9ae4ba88e5e58012fa6c2729c32/raw";
|
||||
sha256 = "0fskiy9sbzvp693fcyv3pfq8kxxx3d3mgmaqvjbl5bpfjivij8l1";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user