Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
626 B
Nix
36 lines
626 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
blas,
|
|
}:
|
|
|
|
assert !blas.isILP64;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "plumed";
|
|
version = "2.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "plumed";
|
|
repo = "plumed2";
|
|
rev = "v${version}";
|
|
hash = "sha256-aFX8u+XNb7LARm1jtzWzIvZE5qHFaudtp45Om1Fridg=";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
buildInputs = [ blas ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Molecular metadynamics library";
|
|
homepage = "https://github.com/plumed/plumed2";
|
|
license = licenses.lgpl3Only;
|
|
maintainers = [ maintainers.sheepforce ];
|
|
};
|
|
}
|