summary refs log tree commit diff
path: root/pkgs/development/libraries/isl
diff options
context:
space:
mode:
authorGaël Deest <gael;deest@gmail.com>2016-12-11 13:59:44 +0100
committerGaël Deest <gael;deest@gmail.com>2016-12-11 14:04:59 +0100
commit2fb4874453ca83f0fa50f932885e82329ef198df (patch)
treea7ea22a65899973200ee1b9c6269fc923d4bcb03 /pkgs/development/libraries/isl
parentcb5c0521a2539d6fe1ec76b9a0a71face2eed4c2 (diff)
downloadnixpkgs-2fb4874453ca83f0fa50f932885e82329ef198df.tar
nixpkgs-2fb4874453ca83f0fa50f932885e82329ef198df.tar.gz
nixpkgs-2fb4874453ca83f0fa50f932885e82329ef198df.tar.bz2
nixpkgs-2fb4874453ca83f0fa50f932885e82329ef198df.tar.lz
nixpkgs-2fb4874453ca83f0fa50f932885e82329ef198df.tar.xz
nixpkgs-2fb4874453ca83f0fa50f932885e82329ef198df.tar.zst
nixpkgs-2fb4874453ca83f0fa50f932885e82329ef198df.zip
isl: 0.15 -> 0.17.1
Oups.
Diffstat (limited to 'pkgs/development/libraries/isl')
-rw-r--r--pkgs/development/libraries/isl/0.17.1.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/libraries/isl/0.17.1.nix b/pkgs/development/libraries/isl/0.17.1.nix
new file mode 100644
index 00000000000..2136969c075
--- /dev/null
+++ b/pkgs/development/libraries/isl/0.17.1.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, gmp }:
+
+stdenv.mkDerivation rec {
+  name = "isl-0.17.1";
+
+  src = fetchurl {
+    url = "http://isl.gforge.inria.fr/${name}.tar.xz";
+    sha256 = "be152e5c816b477594f4c6194b5666d8129f3a27702756ae9ff60346a8731647";
+  };
+
+  buildInputs = [ gmp ];
+
+  enableParallelBuilding = true;
+
+  meta = {
+    homepage = http://www.kotnet.org/~skimo/isl/;
+    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;
+  };
+}