1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

adding halevt

svn path=/nixpkgs/trunk/; revision=17027
This commit is contained in:
Marc Weber 2009-09-10 16:57:53 +00:00
parent 5d39e92acc
commit 21b7f04330
2 changed files with 23 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -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;
};