* Added dash.
svn path=/nixpkgs/trunk/; revision=22088
This commit is contained in:
parent
09b8d46dc9
commit
d1ae973761
15
pkgs/shells/dash/default.nix
Normal file
15
pkgs/shells/dash/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -1959,6 +1959,10 @@ let
|
||||
interactive = true;
|
||||
});
|
||||
|
||||
dash = import ../shells/dash {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
tcsh = import ../shells/tcsh {
|
||||
inherit fetchurl stdenv ncurses;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user