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
|
let
|
||||||
version = "3.3.4";
|
version = "3.3.4";
|
||||||
@ -12,6 +12,15 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "1q85bgd6hnsgn0kq73wa4jwh4qdwklfg73pgqrz4zmxvzbqyi1j2";
|
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 ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user