mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 03:53:56 +00:00
36 lines
726 B
Nix
36 lines
726 B
Nix
{ version
|
|
, urls
|
|
, sha256
|
|
, configureFlags ? []
|
|
, patches ? []
|
|
}:
|
|
|
|
{ lib, stdenv, fetchurl, gmp, autoreconfHook
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "isl";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
inherit urls sha256;
|
|
};
|
|
|
|
inherit patches;
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = lib.optionals (stdenv.hostPlatform.isRiscV && lib.versionOlder version "0.24") [ autoreconfHook ];
|
|
buildInputs = [ gmp ];
|
|
|
|
inherit configureFlags;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = "https://libisl.sourceforge.io/";
|
|
license = lib.licenses.lgpl21;
|
|
description = "A library for manipulating sets and relations of integer points bounded by linear constraints";
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|