2017-02-18 08:23:07 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libX11, guile }:
|
2011-03-21 19:10:20 +01:00
|
|
|
|
2020-05-27 23:52:52 +02:00
|
|
|
let version = "1.8.7"; in
|
2011-03-21 19:10:20 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "xbindkeys";
|
|
|
|
inherit version;
|
2011-03-21 19:10:20 +01:00
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://www.nongnu.org/xbindkeys/xbindkeys-${version}.tar.gz";
|
2020-05-27 23:52:52 +02:00
|
|
|
sha256 = "1wl2vc5alisiwyk8m07y1ryq8w3ll9ym83j27g4apm4ixjl8d6x2";
|
2011-03-21 19:10:20 +01:00
|
|
|
};
|
|
|
|
|
2017-02-18 08:23:07 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-03-21 19:10:20 +01:00
|
|
|
buildInputs = [ libX11 guile ];
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.nongnu.org/xbindkeys/xbindkeys.html";
|
2011-03-21 19:10:20 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|