nixpkgs/pkgs/tools/X11/xbindkeys/default.nix
Lluís Batlle i Rossell 4fce3aceb0 Adding xbindkeys (now with all the files)
svn path=/nixpkgs/trunk/; revision=26448
2011-03-21 18:10:20 +00:00

21 lines
623 B
Nix

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