1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/util-linux/default.nix
Eelco Dolstra dde13d1ada * Remove patch arguments.
svn path=/nixpkgs/trunk/; revision=1462
2004-09-19 10:34:01 +00:00

12 lines
270 B
Nix

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