summary refs log tree commit diff
path: root/pkgs/shells/dash/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/shells/dash/default.nix')
-rw-r--r--pkgs/shells/dash/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/shells/dash/default.nix b/pkgs/shells/dash/default.nix
new file mode 100644
index 00000000000..3918be2afc1
--- /dev/null
+++ b/pkgs/shells/dash/default.nix
@@ -0,0 +1,15 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "dash-0.5.6";
+  
+  src = fetchurl {
+    url = "http://gondor.apana.org.au/~herbert/dash/files/${name}.tar.gz";
+    sha256 = "0qnqx14y70ay1mn0w0hrknpll9266pvj0426k8niww9s7fzv89w5";
+  };
+  
+  meta = {
+    homepage = http://gondor.apana.org.au/~herbert/dash/;
+    description = "A POSIX-compliant implementation of /bin/sh that aims to be as small as possible";
+  };
+}