isl: add 0.20

Update `isl` to use `isl_0_20`.
This commit is contained in:
Brian Schroeder
2018-11-19 10:34:52 -05:00
parent 151cc7c288
commit 0e8c811907
3 changed files with 5 additions and 27 deletions
+21
View File
@@ -0,0 +1,21 @@
{ stdenv, fetchurl, gmp }:
stdenv.mkDerivation rec {
name = "isl-0.20";
src = fetchurl {
url = "http://isl.gforge.inria.fr/${name}.tar.xz";
sha256 = "1akpgq0rbqbah5517blg2zlnfvjxfcl9cjrfc75nbcx5p2gnlnd5";
};
buildInputs = [ gmp ];
enableParallelBuilding = true;
meta = {
homepage = http://isl.gforge.inria.fr/;
license = stdenv.lib.licenses.lgpl21;
description = "A library for manipulating sets and relations of integer points bounded by linear constraints";
platforms = stdenv.lib.platforms.all;
};
}