core/pkgs/by-name/is/isl/generic.nix

33 lines
849 B
Nix
Raw Normal View History

2024-05-13 21:24:10 +00:00
{ version, urls, sha256, configureFlags ? [ ], patches ? [ ] }:
{ lib, stdenv, fetchurl, gmp, autoreconfHook, buildPackages }:
2024-05-02 00:46:19 +00:00
stdenv.mkDerivation {
pname = "isl";
inherit version;
2024-05-13 21:24:10 +00:00
src = fetchurl { inherit urls sha256; };
2024-05-02 00:46:19 +00:00
inherit patches;
strictDeps = true;
2024-05-13 21:24:10 +00:00
depsBuildBuild = lib.optionals (lib.versionAtLeast version "0.24")
[ buildPackages.stdenv.cc ];
nativeBuildInputs = lib.optionals
(stdenv.hostPlatform.isRiscV && lib.versionOlder version "0.24")
[ autoreconfHook ];
2024-05-02 00:46:19 +00:00
buildInputs = [ gmp ];
inherit configureFlags;
enableParallelBuilding = true;
meta = {
homepage = "https://libisl.sourceforge.io/";
license = lib.licenses.lgpl21;
2024-05-13 21:24:10 +00:00
description =
"A library for manipulating sets and relations of integer points bounded by linear constraints";
2024-05-02 00:46:19 +00:00
platforms = lib.platforms.all;
};
}