nixpkgs/pkgs/applications/science/math/pari/gp2c.nix
Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

40 lines
767 B
Nix

{
lib,
stdenv,
fetchurl,
pari,
perl,
}:
stdenv.mkDerivation rec {
pname = "gp2c";
version = "0.0.14";
src = fetchurl {
url = "https://pari.math.u-bordeaux.fr/pub/pari/GP2C/${pname}-${version}.tar.gz";
hash = "sha256-r2ESzAKUBFfiOdpEM9Gg2Npg7u8p98xyL2TNSsALezA=";
};
buildInputs = [
pari
perl
];
configureFlags = [
"--with-paricfg=${pari}/lib/pari/pari.cfg"
"--with-perl=${perl}/bin/perl"
];
meta = with lib; {
homepage = "http://pari.math.u-bordeaux.fr/";
description = "Compiler to translate GP scripts to PARI programs";
downloadPage = "http://pari.math.u-bordeaux.fr/download.html";
inherit (pari.meta)
license
maintainers
teams
platforms
broken
;
};
}