2011-12-14 06:31:56 -08:00
|
|
|
{ stdenv, fetchurl, gmp }:
|
2011-03-31 14:19:39 -07:00
|
|
|
|
2011-11-06 20:26:06 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2015-07-08 16:21:03 -07:00
|
|
|
name = "isl-0.15";
|
2011-11-30 03:19:07 -08:00
|
|
|
|
2011-03-31 14:19:39 -07:00
|
|
|
src = fetchurl {
|
2015-07-08 16:21:03 -07:00
|
|
|
url = "http://isl.gforge.inria.fr/${name}.tar.xz";
|
|
|
|
sha256 = "1m922l5bz69lvkcxrib7lvjqwfqsr8rpbzgmb2aq07bp76460jhh";
|
2011-03-31 14:19:39 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gmp ];
|
|
|
|
|
2014-08-28 09:33:51 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-03-31 14:19:39 -07:00
|
|
|
meta = {
|
2018-03-24 22:04:25 -07:00
|
|
|
homepage = https://www.kotnet.org/~skimo/isl/;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
2011-12-12 11:56:04 -08:00
|
|
|
description = "A library for manipulating sets and relations of integer points bounded by linear constraints";
|
2011-11-30 03:19:07 -08:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2011-03-31 14:19:39 -07:00
|
|
|
};
|
|
|
|
}
|