mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Add isl-0.14.1
This commit is contained in:
parent
934d3c19fd
commit
0f3586e917
2 changed files with 23 additions and 0 deletions
22
pkgs/development/libraries/isl/0.14.1.nix
Normal file
22
pkgs/development/libraries/isl/0.14.1.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, fetchurl, gmp }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "isl-0.14.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://isl.gforge.inria.fr/${name}.tar.xz";
|
||||
sha256 = "0xa6xagah5rywkywn19rzvbvhfvkmylhcxr6z9z7bz29cpiwk0l8";
|
||||
};
|
||||
|
||||
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";
|
||||
maintainers = [ stdenv.lib.maintainers.shlevy ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
|
@ -1771,6 +1771,7 @@ let
|
|||
|
||||
isl = callPackage ../development/libraries/isl { };
|
||||
isl_0_12 = callPackage ../development/libraries/isl/0.12.2.nix { };
|
||||
isl_0_14 = callPackage ../development/libraries/isl/0.14.1.nix { };
|
||||
|
||||
isync = callPackage ../tools/networking/isync { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue