2021-01-17 10:17:16 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, 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
|
|
|
};
|
|
|
|
|
2021-01-17 10:17:16 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
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";
|
2021-01-15 10:19:50 +01:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
maintainers = with lib.maintainers; [viric];
|
|
|
|
platforms = with lib.platforms; linux;
|
2011-03-21 19:10:20 +01:00
|
|
|
};
|
|
|
|
}
|