nixpkgs/pkgs/os-specific/linux/device-mapper/default.nix
Eelco Dolstra 9d76685ded * LVM2 and the device mapper.
svn path=/nixpkgs/trunk/; revision=7475
2006-12-23 23:16:04 +00:00

12 lines
294 B
Nix

{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=";
}