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

stdenv.mkDerivation {
  name = "util-linux-2.12r";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.kernel.org/pub/linux/utils/util-linux/util-linux-2.12r.tar.bz2;
    md5 = "af9d9e03038481fbf79ea3ac33f116f9";
  };
  patches = [./MCONFIG.patch];
}