summary refs log tree commit diff
path: root/pkgs/shells/bash/default.nix
blob: 3e824cfecc57c72a00445a90572ed620f8c95978 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl}:

derivation {
  name = "bash-2.05b";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.nl.net/pub/gnu/bash/bash-2.05b.tar.gz;
    md5 = "5238251b4926d778dfe162f6ce729733";
  };
  inherit stdenv;
}