Adding xbindkeys (now with all the files)

svn path=/nixpkgs/trunk/; revision=26448
This commit is contained in:
Lluís Batlle i Rossell 2011-03-21 18:10:20 +00:00
parent f6e3d3e10d
commit 4fce3aceb0
2 changed files with 21 additions and 2 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl, libX11, guile }:
let version = "1.8.5"; in
stdenv.mkDerivation {
name = "xbindkeys-${version}";
src = fetchurl {
url = "http://www.nongnu.org/xbindkeys/xbindkeys-${version}.tar.gz";
sha256 = "10gwyvj69yyqgk1xxbrl37gx3c3jfpgr92mz62b1x5q6jiq7hbyn";
};
buildInputs = [ libX11 guile ];
meta = {
homepage = http://www.nongnu.org/xbindkeys/xbindkeys.html;
description = "Launch shell commands with your keyboard or your mouse under X Window";
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}

View file

@ -6846,8 +6846,7 @@ let
xawtv = callPackage ../applications/video/xawtv { };
/* Commented until I can commit the default.nix I forgot
xbindkeys = callPackage ../tools/X11/xbindkeys { };*/
xbindkeys = callPackage ../tools/X11/xbindkeys { };
xchat = callPackage ../applications/networking/irc/xchat { };