2011-03-31 23:19:39 +02:00
|
|
|
{stdenv, fetchurl, gmp, static ? false}:
|
|
|
|
|
2011-11-07 05:26:06 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2011-11-30 12:19:07 +01:00
|
|
|
name = "isl-0.08";
|
|
|
|
|
2011-03-31 23:19:39 +02:00
|
|
|
src = fetchurl {
|
2011-11-30 12:19:07 +01:00
|
|
|
url = "http://www.kotnet.org/~skimo/isl/${name}.tar.bz2";
|
|
|
|
sha256 = "16rqvajcp9x6j76mg9q6bprqkgsm1zprx50j90s6v996y7ww3j9l";
|
2011-03-31 23:19:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gmp ];
|
|
|
|
|
2011-11-30 12:19:07 +01:00
|
|
|
dontDisableStatic = static;
|
|
|
|
configureFlags =
|
|
|
|
stdenv.lib.optionals static [ " --enable-static" "--disable-shared" ];
|
2011-03-31 23:19:39 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.kotnet.org/~skimo/isl/;
|
|
|
|
license = "LGPLv2.1";
|
|
|
|
description = "A library for manipulating sets and relations of integer points bounded by linear constraints.";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.shlevy ];
|
2011-11-30 12:19:07 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2011-03-31 23:19:39 +02:00
|
|
|
};
|
|
|
|
}
|