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

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