nixpkgs/pkgs/os-specific/linux/hotplug/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

13 lines
471 B
Nix

{stdenv, fetchurl, bash, gnused, coreutils, utillinux, gnugrep, module_init_tools}:
stdenv.mkDerivation {
name = "hotplug-2004_03_29";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/hotplug-2004_03_29.tar.gz;
md5 = "167bd479a1ca30243c51ca088e0942b3";
};
patches = [./hotplug-install-path.patch ./hotplug-install.patch ./hotplug-2004_03_29.patch];
inherit bash gnused coreutils utillinux gnugrep module_init_tools;
}