Skip to content

Commit

Permalink
isl: 0.15 -> 0.17.1
Browse files Browse the repository at this point in the history
Oups.
  • Loading branch information
Gaël Deest committed Dec 11, 2016
1 parent cb5c052 commit 2fb4874
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
21 changes: 21 additions & 0 deletions 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;
};
}
3 changes: 2 additions & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -2271,11 +2271,12 @@ in

ised = callPackage ../tools/misc/ised {};

isl = isl_0_15;
isl = isl_0_17;
isl_0_11 = callPackage ../development/libraries/isl/0.11.1.nix { };
isl_0_12 = callPackage ../development/libraries/isl/0.12.2.nix { };
isl_0_14 = callPackage ../development/libraries/isl/0.14.1.nix { };
isl_0_15 = callPackage ../development/libraries/isl/0.15.0.nix { };
isl_0_17 = callPackage ../development/libraries/isl/0.17.1.nix { };

ispike = callPackage ../development/libraries/science/robotics/ispike { };

Expand Down

0 comments on commit 2fb4874

Please sign in to comment.