571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
26 lines
767 B
Nix
26 lines
767 B
Nix
{ lib, stdenv, fetchurl, unzip, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "metis";
|
|
version = "5.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-${version}.tar.gz";
|
|
sha256 = "1cjxgh41r8k6j029yxs8msp3z6lcnpm16g5pvckk35kc7zhfpykn";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DGKLIB_PATH=../GKlib"
|
|
# remove once updated past https://github.com/KarypisLab/METIS/commit/521a2c360dc21ace5c4feb6dc0b7992433e3cb0f
|
|
"-DCMAKE_SKIP_BUILD_RPATH=ON"
|
|
];
|
|
nativeBuildInputs = [ unzip cmake ];
|
|
|
|
meta = {
|
|
description = "Serial graph partitioning and fill-reducing matrix ordering";
|
|
homepage = "http://glaros.dtc.umn.edu/gkhome/metis/metis/overview";
|
|
license = lib.licenses.asl20;
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|