summary refs log tree commit diff
path: root/pkgs/os-specific/linux/hal/hal-evt.nix
blob: a49f4fcc0f8a6810300cf8cb6b20c1b38faf9a96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, libxml2, pkgconfig, boolstuff, hal, dbus_glib }:

stdenv.mkDerivation {
  name = "hal-evt-0.1.4";

  src = fetchurl {
    url = http://savannah.nongnu.org/download/halevt/halevt-0.1.4.tar.gz;
    sha256 = "173dphyzpicjz5pnw0d6wmibvib5h99nh1gmyvcqpgvf8la5vrps";
  };

  buildInputs = [ libxml2 pkgconfig boolstuff hal dbus_glib ];

  meta = { 
    description = "Execute commands on hal events";
    homepage = http://www.nongnu.org/halevt/;
    license = "GPLv2";
    maintainers = [ stdenv.lib.maintainers.marcweber ];
    platforms = stdenv.lib.platforms.linux;
  };
}