nixpkgs/pkgs/shells/bash/default.nix
Eelco Dolstra 4d3059721d * bash 2.0, findutils 4.2.28.
* Some Nix expression simplifications.  Sense and simplicity!

svn path=/nixpkgs/trunk/; revision=6836
2006-10-24 23:05:12 +00:00

17 lines
352 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "bash-3.2";
builder = ./builder.sh;
src = fetchurl {
url = http://ftp.gnu.org/pub/gnu/bash/bash-3.2.tar.gz;
md5 = "00bfa16d58e034e3c2aa27f390390d30";
};
patches = [./winsize.patch];
meta = {
description = "GNU Bourne-Again Shell, the de facto standard shell on Linux";
};
}