diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-06-02 03:14:19 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-06-02 18:06:03 +0200 |
commit | 854c39ae42fb67efded29ab8d076aec2a7ba3d1f (patch) | |
tree | a1c69ff571450c4e455d5660ffa522306cadd4c7 /gnu/packages/xdisorg.scm | |
parent | dc67e9e5b2485e7a2f50b3979bdff968028eec42 (diff) | |
download | guix-854c39ae42fb67efded29ab8d076aec2a7ba3d1f.tar guix-854c39ae42fb67efded29ab8d076aec2a7ba3d1f.tar.gz |
gnu: xbindkeys: Update to 1.8.7.
* gnu/packages/xdisorg.scm (xbindkeys): Update to 1.8.7.
[native-inputs]: Add pkg-config.
[inputs]: Update to guile-2.2.
Diffstat (limited to 'gnu/packages/xdisorg.scm')
-rw-r--r-- | gnu/packages/xdisorg.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 3c98836102..5941f63a26 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -899,7 +899,7 @@ transparent text on your screen.") (define-public xbindkeys (package (name "xbindkeys") - (version "1.8.6") + (version "1.8.7") (source (origin (method url-fetch) ;; Download from the savannah mirror list fails @@ -909,11 +909,13 @@ transparent text on your screen.") ".tar.gz")) (sha256 (base32 - "060df6d8y727jp1inp7blp44cs8a7jig7vcm8ndsn6gw36z1h3bc")))) + "1wl2vc5alisiwyk8m07y1ryq8w3ll9ym83j27g4apm4ixjl8d6x2")))) (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) (inputs `(("libx11" ,libx11) - ("guile" ,guile-2.0))) + ("guile" ,guile-2.2))) (home-page "https://www.nongnu.org/xbindkeys/") (synopsis "Associate a combination of keys with a shell command") (description |