nixpkgs/pkgs/os-specific/linux/util-linux/default.nix
Eelco Dolstra a33753a973 * Added util-linux (for mount etc.).
svn path=/nixpkgs/trunk/; revision=786
2004-02-16 10:40:45 +00:00

14 lines
318 B
Nix

{stdenv, fetchurl, patch}:
derivation {
name = "util-linux-2.12";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://ftp.cwi.nl/aeb/util-linux/util-linux-2.12.tar.gz;
md5 = "997adf78b98d9d1c5db4f37ea982acff";
};
mconfigPatch = ./MCONFIG.patch;
inherit stdenv patch;
}