depot/third_party/nixpkgs/pkgs/applications/science/math/pari/gp2c.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

33 lines
718 B
Nix

{ lib
, stdenv
, fetchurl
, pari
, perl
}:
stdenv.mkDerivation rec {
pname = "gp2c";
version = "0.0.13";
src = fetchurl {
url = "https://pari.math.u-bordeaux.fr/pub/pari/GP2C/${pname}-${version}.tar.gz";
hash = "sha256-JhN07Kc+vXbBEqlZPcootkgSqnYlYf2lpLLCzXmmnTY=";
};
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 platforms broken;
};
}