Files
ccpkgs/namd.nix
2016-11-28 12:00:44 -05:00

17 lines
280 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "namd-2.11";
builder = ./builder.sh;
src = fetchurl {
url = http://ppomorsk.sharcnet.ca/namd-2.11.tar.gz;
md5 = "8a81eb4c883edbf977d0af05351f6914";
};
buildInputs = [
perl
bash
tcsh
];
}