nixpkgs/pkgs/os-specific/linux/hotplug/default.nix
Armijn Hemel b21d747280 hotplug uses some tools from gnused and coreutils
svn path=/nixpkgs/trunk/; revision=4493
2006-01-05 17:38:12 +00:00

13 lines
427 B
Nix

{stdenv, fetchurl, bash, gnused, coreutils}:
stdenv.mkDerivation {
name = "hotplug-2004_03_29";
builder = ./builder.sh;
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/linux-hotplug/hotplug-2004_03_29.tar.gz;
md5 = "167bd479a1ca30243c51ca088e0942b3";
};
patches = [./hotplug-install-path.patch ./hotplug-install.patch ./hotplug-2004_03_29-bash.patch];
inherit bash gnused coreutils;
}