mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
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.
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ColPack";
|
|
version = "1.0.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CSCsw";
|
|
repo = pname;
|
|
rev = "v" + version;
|
|
sha256 = "1p05vry940mrjp6236c0z83yizmw9pk6ly2lb7d8rpb7j9h03glr";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
configureFlags = [
|
|
"--enable-openmp=${if stdenv.hostPlatform.isLinux then "yes" else "no"}"
|
|
"--enable-examples=no"
|
|
];
|
|
|
|
postInstall = ''
|
|
# Remove libtool archive
|
|
rm $out/lib/*.la
|
|
|
|
# Remove compiled examples (Basic examples get compiled anyway)
|
|
rm -r $out/examples
|
|
|
|
# Copy the example sources (Basic tree contains scripts and object files)
|
|
mkdir -p $out/share/ColPack/examples/Basic
|
|
cp SampleDrivers/Basic/*.cpp $out/share/ColPack/examples/Basic
|
|
cp -r SampleDrivers/Matrix* $out/share/ColPack/examples
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Package comprising of implementations of algorithms for
|
|
vertex coloring and derivative computation";
|
|
homepage = "https://cscapes.cs.purdue.edu/coloringpage/software.htm#functionalities";
|
|
license = licenses.lgpl3Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
};
|
|
}
|