* Added dash.

svn path=/nixpkgs/trunk/; revision=22088
This commit is contained in:
Eelco Dolstra 2010-06-01 17:05:29 +00:00
parent 09b8d46dc9
commit d1ae973761
2 changed files with 19 additions and 0 deletions

View File

@ -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";
};
}

View File

@ -1959,6 +1959,10 @@ let
interactive = true;
});
dash = import ../shells/dash {
inherit fetchurl stdenv;
};
tcsh = import ../shells/tcsh {
inherit fetchurl stdenv ncurses;
};