about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2009-09-10 16:57:53 +0000
committerMarc Weber <marco-oweber@gmx.de>2009-09-10 16:57:53 +0000
commit21b7f04330925fc1cb88313061d4755e4ee27680 (patch)
tree98271d28716d42ac4423375fbc613f7ad98bf21d
parent5d39e92accbf63f2fed83fe278606110490aaea2 (diff)
adding halevt
svn path=/nixpkgs/trunk/; revision=17027
-rw-r--r--pkgs/os-specific/linux/hal/hal-evt.nix19
-rw-r--r--pkgs/top-level/all-packages.nix4
2 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/hal/hal-evt.nix b/pkgs/os-specific/linux/hal/hal-evt.nix
new file mode 100644
index 0000000000000..25b4e5033262a
--- /dev/null
+++ b/pkgs/os-specific/linux/hal/hal-evt.nix
@@ -0,0 +1,19 @@
+args: with args;
+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 = [args.lib.maintainers.marcweber];
+    platforms = args.lib.platforms.linux;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index e81292360ed0f..ab2c8183d6c72 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -4889,6 +4889,10 @@ let
     inherit (gtkLibs) glib;
   };
 
+  halevt = import ../os-specific/linux/hal/hal-evt.nix {
+    inherit fetchurl stdenv lib libxml2 pkgconfig boolstuff hal dbus_glib;
+  };
+
   hal_info = import ../os-specific/linux/hal/info.nix {
     inherit fetchurl stdenv pkgconfig;
   };