summary refs log tree commit diff
path: root/pkgs/os-specific/linux/dietlibc/default.nix
blob: 32d2446d9a40362eac7ee5121cc5e6f52d87c285 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl}:

assert stdenv.system == "i686-linux";

stdenv.mkDerivation {
  name = "dietlibc-0.29";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/dietlibc-0.29.tar.bz2;
    md5 = "16d31dd7b5f9124e8ea8280c3f646e13";
  };
  patches = [./dietlibc-install.patch];
}