tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ecm: enable on Darwin
Dan Peebles
8 years ago
1df505fc
7c3253e5
+7
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
science
math
ecm
default.nix
+7
-4
pkgs/applications/science/math/ecm/default.nix
···
10
10
inherit name;
11
11
12
12
src = fetchurl {
13
13
-
url = http://gforge.inria.fr/frs/download.php/file/32159/ecm-6.4.4.tar.gz;
14
14
-
sha256 = "0v5h2nicz9yx78c2d72plbhi30iq4nxbvphja1s9501db4aah4y8";
15
15
-
};
13
13
+
url = http://gforge.inria.fr/frs/download.php/file/32159/ecm-6.4.4.tar.gz;
14
14
+
sha256 = "0v5h2nicz9yx78c2d72plbhi30iq4nxbvphja1s9501db4aah4y8";
15
15
+
};
16
16
+
17
17
+
# See https://trac.sagemath.org/ticket/19233
18
18
+
configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-asm-redc";
16
19
17
20
buildInputs = [ m4 gmp ];
18
21
···
23
26
license = stdenv.lib.licenses.gpl2Plus;
24
27
homepage = http://ecm.gforge.inria.fr/;
25
28
maintainers = [ stdenv.lib.maintainers.roconnor ];
26
26
-
platforms = stdenv.lib.platforms.linux;
29
29
+
platforms = with stdenv.lib.platforms; linux ++ darwin;
27
30
};
28
31
}