summary refs log blame commit diff
path: root/pkgs/os-specific/linux/dietlibc/default.nix
blob: ddd4010b5a105014774fe97553fd2d874f1ef6b0 (plain) (tree)
1
2
3
4
5
6
7
8
9




                                     
                         
                  
                                                                  
                                             


                                       
{stdenv, fetchurl}:

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

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