nixpkgs/pkgs/os-specific/linux/dietlibc/default.nix
Eelco Dolstra 461783c3a5 * useDietLibC: work properly on impure stdenvs.
* dietlibc: pass glibc explicitly.

svn path=/nixpkgs/trunk/; revision=6807
2006-10-23 17:43:55 +00:00

27 lines
583 B
Nix

{stdenv, fetchurl, glibc}:
assert stdenv.isLinux;
stdenv.mkDerivation {
name = "dietlibc-0.30";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/dietlibc-0.30.tar.bz2;
md5 = "2465d652fff6f1fad3da3b98e60e83c9";
};
builder = ./builder.sh;
inherit glibc;
patches = [
# dietlibc's sigcontext.h provides a macro called PC(), which is
# rather intrusive (e.g., binutils fails to compile because of
# it). Rename it.
./pc.patch
# wchar.h declares lots of functions that don't actually exist.
# Remove them.
./no-wchar.h
];
}