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