forked from mirrors/nixpkgs
f1e8640c54
* libisl: Make derivation generic Signed-off-by: Matthias Beyer <mail@beyermatthias.de> * libisl: add 0.24 Signed-off-by: Matthias Beyer <mail@beyermatthias.de> * isl: remove unused args * isl: remove dead homepages * isl: fix configureFlags * isl: fix nested callPackage use import to remove callPackage-inside-callPackage, which breaks overriding * isl: pname/version -> name pname/version is preferred, but causes rebuilds here. let's do the cleanup separately from the mass rebuild, to use the 0-rebuild-count as a 'nothing up my sleeve' gesture * isl_0_24: fix sha256 * isl_0_11: add missing patch Co-authored-by: Ryan Burns <rtburns@protonmail.com>
12 lines
331 B
Nix
12 lines
331 B
Nix
import ./generic.nix rec {
|
|
version = "0.20";
|
|
urls = [
|
|
"mirror://sourceforge/libisl/isl-${version}.tar.xz"
|
|
"https://libisl.sourceforge.io/isl-${version}.tar.xz"
|
|
];
|
|
sha256 = "1akpgq0rbqbah5517blg2zlnfvjxfcl9cjrfc75nbcx5p2gnlnd5";
|
|
configureFlags = [
|
|
"--with-gcc-arch=generic" # don't guess -march=/mtune=
|
|
];
|
|
}
|