nixpkgs/pkgs/os-specific/linux/hotplug/default.nix
Armijn Hemel d36b6a1898 patch hotplug so we won't need /bin/bash. I'm not sure how free of bashisms
these scripts are, so using /bin/sh instead is no option...

svn path=/nixpkgs/trunk/; revision=4492
2006-01-05 16:31:29 +00:00

13 lines
391 B
Nix

{stdenv, fetchurl, bash}:
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;
}