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