mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 08:14:19 +00:00
53a60ad361
https://issues.guix.gnu.org/42162 https://github.com/dockcross/dockcross/issues/606 https://groups.google.com/g/isl-development/c/JGaMo2VUu_8 https://giters.com/coq/opam-coq-archive/issues/1298?amp=1 Signed-off-by: Arthur Gautier <baloo@superbaloo.net>
25 lines
617 B
Nix
25 lines
617 B
Nix
{ lib, stdenv, fetchurl, gmp }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "isl-0.14.1";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"mirror://sourceforge/libisl/${name}.tar.xz"
|
|
"https://libisl.sourceforge.io/${name}.tar.xz"
|
|
];
|
|
sha256 = "0xa6xagah5rywkywn19rzvbvhfvkmylhcxr6z9z7bz29cpiwk0l8";
|
|
};
|
|
|
|
buildInputs = [ gmp ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = "https://www.kotnet.org/~skimo/isl/";
|
|
license = lib.licenses.lgpl21;
|
|
description = "A library for manipulating sets and relations of integer points bounded by linear constraints";
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|