From 14fefb6a18158c5792fb52d0c4d007e1058ef83f Mon Sep 17 00:00:00 2001 From: Sebastian Jordan Date: Sun, 9 Apr 2017 14:54:44 +0200 Subject: [PATCH] Pass nix-prefetch-git and nix-prefetch-hg in shell.nix to default.nix --- shell.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 1cfc587..af141a1 100644 --- a/shell.nix +++ b/shell.nix @@ -8,5 +8,6 @@ let pythonPackages = builtins.getAttr "python${pythonVersion}Packages" pkgs; in import ./default.nix { inherit src pythonPackages; - inherit (pkgs) stdenv fetchurl zip makeWrapper nix nix-prefetch-scripts; + inherit (pkgs) stdenv fetchurl zip makeWrapper nix + nix-prefetch-git nix-prefetch-hg; }