2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, gmp }:
|
2016-12-11 12:59:44 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "isl-0.17.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-13 21:32:36 +00:00
|
|
|
urls = [
|
|
|
|
"mirror://sourceforge/libisl/${name}.tar.xz"
|
|
|
|
"https://libisl.sourceforge.io/${name}.tar.xz"
|
|
|
|
];
|
2016-12-11 12:59:44 +00:00
|
|
|
sha256 = "be152e5c816b477594f4c6194b5666d8129f3a27702756ae9ff60346a8731647";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gmp ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.kotnet.org/~skimo/isl/";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.lgpl21;
|
2016-12-11 12:59:44 +00:00
|
|
|
description = "A library for manipulating sets and relations of integer points bounded by linear constraints";
|
2021-01-21 17:00:13 +00:00
|
|
|
platforms = lib.platforms.all;
|
2016-12-11 12:59:44 +00:00
|
|
|
};
|
|
|
|
}
|