tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gp2c: cosmetical changes
AndersonTorres
4 years ago
dc2cad81
3845245d
+11
-5
1 changed file
expand all
collapse all
unified
split
pkgs
applications
science
math
pari
gp2c.nix
+11
-5
pkgs/applications/science/math/pari/gp2c.nix
···
1
1
-
{ lib, stdenv
2
2
-
, pari
1
1
+
{ lib
2
2
+
, stdenv
3
3
, fetchurl
4
4
-
, perl }:
4
4
+
, pari
5
5
+
, perl
6
6
+
}:
5
7
6
8
stdenv.mkDerivation rec {
7
9
pname = "gp2c";
···
12
14
sha256 = "039ip7qkwwv46wrcdrz7y12m30kazzkjr44kqbc0h137g4wzd7zf";
13
15
};
14
16
15
15
-
buildInputs = [ pari perl ];
17
17
+
buildInputs = [
18
18
+
pari
19
19
+
perl
20
20
+
];
16
21
17
22
configureFlags = [
18
23
"--with-paricfg=${pari}/lib/pari/pari.cfg"
19
19
-
"--with-perl=${perl}/bin/perl" ];
24
24
+
"--with-perl=${perl}/bin/perl"
25
25
+
];
20
26
21
27
meta = with lib; {
22
28
description = "A compiler to translate GP scripts to PARI programs";