46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
29 lines
800 B
Nix
29 lines
800 B
Nix
{ stdenv, fetchurl
|
|
, pari, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gp2c";
|
|
version = "0.0.11pl2";
|
|
|
|
src = fetchurl {
|
|
url = "https://pari.math.u-bordeaux.fr/pub/pari/GP2C/${pname}-${version}.tar.gz";
|
|
sha256 = "0wqsf05wgkqvmmsx7jinvzdqav6rl56sr8haibgs31nzz4x9xz9g";
|
|
};
|
|
|
|
buildInputs = [ pari perl ];
|
|
|
|
configureFlags = [
|
|
"--with-paricfg=${pari}/lib/pari/pari.cfg"
|
|
"--with-perl=${perl}/bin/perl" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A compiler to translate GP scripts to PARI programs";
|
|
homepage = "http://pari.math.u-bordeaux.fr/";
|
|
downloadPage = "http://pari.math.u-bordeaux.fr/download.html";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
};
|
|
}
|
|
# TODO: add it as "source file" for default package
|