454707da23
svn path=/nixpkgs/trunk/; revision=3660
12 lines
271 B
Nix
12 lines
271 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "util-linux-2.12q";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/util-linux-2.12q.tar.bz2;
|
|
md5 = "54320aa1abbce00c0dc030e2c3afe5d7";
|
|
};
|
|
patches = [./MCONFIG.patch];
|
|
}
|