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

stdenv.mkDerivation {
  name = "device-mapper-1.02.13";
  src = fetchurl {
    url = ftp://sources.redhat.com/pub/dm/device-mapper.1.02.13.tgz;
    md5 = "9ab13083a939ceb26ce5da6b625aeb3c";
  };
  # To prevent make install from failing.
  installFlags = "OWNER= GROUP=";
}