summary refs log tree commit diff
path: root/pkgs/os-specific/linux/util-linux/default.nix
blob: a346d134c8045088c3f25b8c5adf95780cdbb247 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, patch}:

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;
  inherit patch;
}