mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
gp2c: cosmetical changes
This commit is contained in:
parent
3845245d71
commit
dc2cad8150
1 changed files with 11 additions and 5 deletions
|
@ -1,7 +1,9 @@
|
|||
{ lib, stdenv
|
||||
, pari
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, perl }:
|
||||
, pari
|
||||
, perl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gp2c";
|
||||
|
@ -12,11 +14,15 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "039ip7qkwwv46wrcdrz7y12m30kazzkjr44kqbc0h137g4wzd7zf";
|
||||
};
|
||||
|
||||
buildInputs = [ pari perl ];
|
||||
buildInputs = [
|
||||
pari
|
||||
perl
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--with-paricfg=${pari}/lib/pari/pari.cfg"
|
||||
"--with-perl=${perl}/bin/perl" ];
|
||||
"--with-perl=${perl}/bin/perl"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A compiler to translate GP scripts to PARI programs";
|
||||
|
|
Loading…
Reference in a new issue