nixpkgs/pkgs/os-specific/linux/util-linux/default.nix

12 lines
271 B
Nix
Raw Normal View History

{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];
}