mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
Changes: - https://groups.google.com/g/isl-announce/c/GkHKH-nVWw8 - https://groups.google.com/g/isl-announce/c/_yQ27dRgf7w - https://groups.google.com/g/isl-announce/c/8lpal5tZdgU
12 lines
330 B
Nix
12 lines
330 B
Nix
import ./generic.nix rec {
|
|
version = "0.27";
|
|
urls = [
|
|
"mirror://sourceforge/libisl/isl-${version}.tar.xz"
|
|
"https://libisl.sourceforge.io/isl-${version}.tar.xz"
|
|
];
|
|
sha256 = "sha256-bYurtZ57Zy6Mt4cOh08/e4E7bgDmrz+LBPdXmWVkPVw=";
|
|
configureFlags = [
|
|
"--with-gcc-arch=generic" # don't guess -march=/mtune=
|
|
];
|
|
}
|