From b8a764d2e8c99c3678ea3f141d3be94b925a8e72 Mon Sep 17 00:00:00 2001 From: Tyson Whitehead Date: Mon, 28 Nov 2016 11:40:59 -0500 Subject: [PATCH] namd: Include perl in buildInputs to put it in the path --- builder.sh | 2 -- namd.nix | 7 +------ 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/builder.sh b/builder.sh index 857cefd..bdd843d 100755 --- a/builder.sh +++ b/builder.sh @@ -1,7 +1,5 @@ source $stdenv/setup -PATH=$perl/bin:$PATH - tar xvfz $src cd namd-* diff --git a/namd.nix b/namd.nix index 2421830..6ff7621 100644 --- a/namd.nix +++ b/namd.nix @@ -9,13 +9,8 @@ stdenv.mkDerivation { }; buildInputs = [ + perl bash tcsh ]; - - - - - - inherit perl; }