nixpkgs/pkgs/os-specific/linux/util-linux-static/default.nix
Armijn Hemel ef883ffda8 add a static version of util-linux for NixOS
svn path=/nixpkgs/trunk/; revision=4425
2005-12-23 23:20:49 +00:00

12 lines
286 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "util-linux-2.12r";
builder = ./builder.sh;
src = fetchurl {
url = http://www.kernel.org/pub/linux/utils/util-linux/util-linux-2.12r.tar.bz2;
md5 = "af9d9e03038481fbf79ea3ac33f116f9";
};
patches = [./MCONFIG.patch];
}