nixpkgs/pkgs/applications/science/logic/poly/default.nix

23 lines
537 B
Nix
Raw Normal View History

{stdenv, fetchurl, gmp, cmake, python}:
2017-08-27 04:55:27 +02:00
let version = "0.1.4";
in
stdenv.mkDerivation {
name = "libpoly-${version}";
src = fetchurl {
url = "https://github.com/SRI-CSL/libpoly/archive/v${version}.tar.gz";
2017-08-27 04:55:27 +02:00
sha256 = "16x1pk2a3pcb5a0dzyw28ccjwkhmbsck4hy80ss7kx0dd7qgpi7j";
};
buildInputs = [ cmake gmp python ];
meta = with stdenv.lib; {
homepage = https://github.com/SRI-CSL/libpoly;
description = "C library for manipulating polynomials";
license = licenses.lgpl3;
platforms = platforms.all;
};
}