2017-02-18 07:23:07 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libX11, guile }:
|
2011-03-21 18:10:20 +00:00
|
|
|
|
2020-05-27 22:52:52 +01:00
|
|
|
let version = "1.8.7"; in
|
2011-03-21 18:10:20 +00:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "xbindkeys";
|
|
|
|
inherit version;
|
2011-03-21 18:10:20 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.nongnu.org/xbindkeys/xbindkeys-${version}.tar.gz";
|
2020-05-27 22:52:52 +01:00
|
|
|
sha256 = "1wl2vc5alisiwyk8m07y1ryq8w3ll9ym83j27g4apm4ixjl8d6x2";
|
2011-03-21 18:10:20 +00:00
|
|
|
};
|
|
|
|
|
2017-02-18 07:23:07 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-03-21 18:10:20 +00:00
|
|
|
buildInputs = [ libX11 guile ];
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.nongnu.org/xbindkeys/xbindkeys.html";
|
2011-03-21 18:10:20 +00:00
|
|
|
description = "Launch shell commands with your keyboard or your mouse under X Window";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2011-03-21 18:10:20 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|