mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
plumed: init at 2.8.2
plumed: fix build
This commit is contained in:
parent
3fe36f47bd
commit
c20b4b62b3
@ -0,0 +1,34 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, blas
|
||||
}:
|
||||
|
||||
assert !blas.isILP64;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "plumed";
|
||||
version = "2.8.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "plumed";
|
||||
repo = "plumed2";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-ugYhJq8KFjT8rkAOX/yZ9IlEklXCwRxKH49REd2QN9E=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -24224,6 +24224,8 @@ with pkgs;
|
||||
mail = callPackage ../development/libraries/gsignond/plugins/mail.nix { };
|
||||
};
|
||||
|
||||
plumed = callPackage ../development/libraries/science/chemistry/plumed { };
|
||||
|
||||
### DEVELOPMENT / LIBRARIES / AGDA
|
||||
|
||||
agdaPackages = callPackage ./agda-packages.nix {
|
||||
|
Loading…
Reference in New Issue
Block a user