summary refs log tree commit diff
path: root/pkgs/os-specific/linux/hotplug/default.nix
blob: e60cfe255093b152e1d78cfa52f15ef5e79e53ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, bash, gnused, coreutils, utillinux, gnugrep, module_init_tools}:

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.patch];
  inherit bash gnused coreutils utillinux gnugrep module_init_tools;
}