2011-03-21 19:10:20 +01:00
|
|
|
{ stdenv, fetchurl, libX11, guile }:
|
|
|
|
|
2014-01-14 06:00:49 +01:00
|
|
|
let version = "1.8.6"; in
|
2011-03-21 19:10:20 +01:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "xbindkeys-${version}";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.nongnu.org/xbindkeys/xbindkeys-${version}.tar.gz";
|
2014-01-14 06:00:49 +01:00
|
|
|
sha256 = "060df6d8y727jp1inp7blp44cs8a7jig7vcm8ndsn6gw36z1h3bc";
|
2011-03-21 19:10:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2011-03-21 19:10:20 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|