From 415c38f9fe497b90c9ca53fce0c0599ea71d05ea Mon Sep 17 00:00:00 2001 From: Justin Bedo Date: Thu, 6 Sep 2018 08:28:51 +1000 Subject: renamed and fixed depends --- conda.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'conda.nix') diff --git a/conda.nix b/conda.nix index daffc8e..bbcb7cf 100644 --- a/conda.nix +++ b/conda.nix @@ -3,7 +3,7 @@ { buildCondaEnv = { depends ? [], run }: stdenv.mkDerivation { name = "conda-env"; - buildInputs = [ conda ] ++ depends; + propagatedBuildInputs = [ conda ] ++ depends; buildCommand = '' mkdir $out HOME=$out @@ -14,7 +14,7 @@ ''; }; - withCondaEnv = env: run: stdenv.mkDerivation { + inCondaEnv = env: run: stdenv.mkDerivation { name = "with-conda-env"; buildCommand = '' #!${stdenv.shell} -- cgit v1.2.3