From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:38875) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFJC9-0008Or-7m for guix-patches@gnu.org; Tue, 01 Oct 2019 10:32:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFJC7-0008Eq-H6 for guix-patches@gnu.org; Tue, 01 Oct 2019 10:32:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:53675) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iFJC7-0008Ef-Aw for guix-patches@gnu.org; Tue, 01 Oct 2019 10:32:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iFJC7-0000cv-5s for guix-patches@gnu.org; Tue, 01 Oct 2019 10:32:03 -0400 Subject: [bug#37571] [PATCH 1/2] gnu: Add keybinder-3.0. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:45690) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFHP8-0006lN-Hl for guix-patches@gnu.org; Tue, 01 Oct 2019 08:37:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFHP6-00036m-GG for guix-patches@gnu.org; Tue, 01 Oct 2019 08:37:22 -0400 Received: from mail-wm1-x334.google.com ([2a00:1450:4864:20::334]:51529) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iFHP2-00030y-V4 for guix-patches@gnu.org; Tue, 01 Oct 2019 08:37:18 -0400 Received: by mail-wm1-x334.google.com with SMTP id 7so3203818wme.1 for ; Tue, 01 Oct 2019 05:37:15 -0700 (PDT) Received: from localhost ([2a02:908:4b16:36e0:a847:6595:1eb5:f2ec]) by smtp.gmail.com with ESMTPSA id f13sm2738037wmj.17.2019.10.01.05.37.13 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 01 Oct 2019 05:37:13 -0700 (PDT) From: Ingo Ruhnke Date: Tue, 1 Oct 2019 14:37:12 +0200 Message-Id: <20191001123713.7769-1-grumbel@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37571@debbugs.gnu.org * gnu/packages/wm.scm: Add keybinder-3.0 package. --- gnu/packages/wm.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) 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 ;;; Copyright © 2019 Gábor Boskovits ;;; Copyright © 2019 Kyle Andrews +;;; Copyright © 2019 Ingo Ruhnke ;;; ;;; 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") -- 2.20.1