diff options
author | Ingo Ruhnke <grumbel@gmail.com> | 2019-10-01 14:37:12 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2019-10-02 00:11:08 +0200 |
commit | 8c765a3b26cfcedf02208dfda151d154835f0b85 (patch) | |
tree | 200fdffef13a06e5bcb36cd1509a6e2f1d1b2b8b | |
parent | ed661e38d8ce3c4efa5c495b2c34ba86e1e43290 (diff) | |
download | patches-8c765a3b26cfcedf02208dfda151d154835f0b85.tar patches-8c765a3b26cfcedf02208dfda151d154835f0b85.tar.gz |
gnu: Add keybinder-3.0.
* gnu/packages/wm.scm: Add keybinder-3.0 package.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
-rw-r--r-- | gnu/packages/wm.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index e47979d026..865b1edee1 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -22,6 +22,7 @@ ;;; Copyright © 2019 Timothy Sample <samplet@ngyro.com> ;;; Copyright © 2019 Gábor Boskovits <boskovits@gmail.com> ;;; Copyright © 2019 Kyle Andrews <kyle.c.andrews@gmail.com> +;;; Copyright © 2019 Ingo Ruhnke <grumbel@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1000,6 +1001,34 @@ Keybinder works with GTK-based applications using the X Window System.") (home-page "https://github.com/kupferlauncher/keybinder") (license license:gpl2+))) +(define-public keybinder-3.0 + (package + (name "keybinder-3.0") + (version "0.3.2") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/kupferlauncher/keybinder" + "/releases/download/" name "-v" version "/" name "-" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0830ihwnalw59pp1xzrp37dn58n8vwb8zasnm4a1h81v3x7dxqz6")))) + (build-system gnu-build-system) + (inputs + `(("gtk+" ,gtk+) + ("gobject-introspection" ,gobject-introspection))) + (native-inputs + `(("gtk-doc" ,gtk-doc) + ("pkg-config" ,pkg-config))) + (synopsis "Library for registering global keyboard shortcuts, Gtk3 version") + (description + "Keybinder is a library for registering global keyboard shortcuts. +Keybinder works with GTK-based applications using the X Window System.") + (home-page "https://github.com/kupferlauncher/keybinder") + (license license:x11))) + (define-public spectrwm (package (name "spectrwm") |