eigen3_3: Fix darwin build

This commit is contained in:
Josef Kemetmüller 2018-06-04 16:25:16 +02:00
parent 19332e4d52
commit bc158d37fe

View file

@ -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 ];