about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/hal
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 /pkgs/os-specific/linux/hal
parent5d39e92accbf63f2fed83fe278606110490aaea2 (diff)
adding halevt
svn path=/nixpkgs/trunk/; revision=17027
Diffstat (limited to 'pkgs/os-specific/linux/hal')
-rw-r--r--pkgs/os-specific/linux/hal/hal-evt.nix19
1 files changed, 19 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;
+  };
+}