2017-07-07 05:30:30 +01:00
|
|
|
{stdenv, fetchurl, gmp, cmake, python}:
|
|
|
|
|
|
|
|
let version = "0.1.3";
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libpoly-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/SRI-CSL/libpoly/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "0nd90585imnznyp04vg6a5ixxkd3bavhv1437397aj2k3dfc0y2k";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ cmake gmp python ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/SRI-CSL/libpoly;
|
|
|
|
description = "C library for manipulating polynomials";
|
2017-07-07 20:54:32 +01:00
|
|
|
license = licenses.lgpl3;
|
2017-07-07 05:30:30 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|