From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:32786) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iwb2V-0006Vt-2l for guix-patches@gnu.org; Tue, 28 Jan 2020 19:17:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iwb2U-0001XE-0b for guix-patches@gnu.org; Tue, 28 Jan 2020 19:17:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:55352) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iwb2T-0001WW-Tt for guix-patches@gnu.org; Tue, 28 Jan 2020 19:17:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iwb2T-0003Qo-R2 for guix-patches@gnu.org; Tue, 28 Jan 2020 19:17:01 -0500 Subject: [bug#39338] [PATCH] gnu: Add emacs-dmenu. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:60484) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iwb1U-0006SJ-HT for guix-patches@gnu.org; Tue, 28 Jan 2020 19:16:01 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:38219) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iwb1U-0007Pe-E0 for guix-patches@gnu.org; Tue, 28 Jan 2020 19:16:00 -0500 From: Amin Bandali Date: Tue, 28 Jan 2020 19:15:36 -0500 Message-Id: <20200129001536.12628-1-mab@gnu.org> MIME-Version: 1.0 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: 39338@debbugs.gnu.org Cc: Amin Bandali * gnu/packages/emacs-xyz.scm (emacs-dmenu): New variable. --- gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index e834dfffb3..cb472f5532 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -21237,3 +21237,27 @@ mode-line text (lighter) of major and minor modes.") (description "@code{unkillable-scratch} helps prevent killing buffers matching a given regexp.") (license license:gpl2+)))) + +(define-public emacs-dmenu + ;; Use the latest commit, as there are no tagged releases. + (let ((commit "e8cc9b27c79d3ecc252267c082ab8e9c82eab264") + (revision "0")) + (package + (name "emacs-dmenu") + (version (git-version "0.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/lujun9972/el-dmenu.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "098ncygms1r33zhjlq4fj2p4jc91v5whqrm3fazzdk7sd6dilf25")))) + (build-system emacs-build-system) + (home-page "https://github.com/lujun9972/el-dmenu") + (synopsis "Simulate the @command{dmenu} command line program") + (description "This package provides a @command{dmenu} command +for launching other commands/applications from within Emacs, similar +to the @command{dmenu} program. Especially useful when using EXWM.") + (license license:gpl3+)))) -- 2.25.0