From 91e5630d74a472311b62cc5673502af0e9095387 Mon Sep 17 00:00:00 2001 From: Thomas Levine <_@thomaslevine.com> Date: Sun, 6 Mar 2016 09:40:36 +0000 Subject: [PATCH] add shells to nix enviroment --- default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 8392f5a..d55d4d7 100644 --- a/default.nix +++ b/default.nix @@ -1,6 +1,9 @@ with import {}; { urchin = stdenv.mkDerivation { name = "urchin"; - buildInputs = [ busybox ]; + buildInputs = [ + busybox + bash dash mksh zsh + ]; }; }