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

stdenv.mkDerivation {
  name = "bash-3.1";
  builder = ./builder.sh;
  src = fetchurl {
    #url = http://nix.cs.uu.nl/dist/tarballs/bash-3.0.tar.gz;
    #md5 = "26c4d642e29b3533d8d754995bc277b3";
    url = http://nix.cs.uu.nl/dist/tarballs/bash-3.1.tar.gz;
    md5 = "ef5304c4b22aaa5088972c792ed45d72";
  };
  configureFlags = "--enable-static-link --without-bash-malloc";
}