mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
adding halevt
svn path=/nixpkgs/trunk/; revision=17027
This commit is contained in:
parent
5d39e92acc
commit
21b7f04330
19
pkgs/os-specific/linux/hal/hal-evt.nix
Normal file
19
pkgs/os-specific/linux/hal/hal-evt.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user