From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60969) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fBGS9-0008G1-2M for guix-patches@gnu.org; Wed, 25 Apr 2018 05:11:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fBGS6-00030k-CP for guix-patches@gnu.org; Wed, 25 Apr 2018 05:11:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59064) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fBGS6-00030S-8X for guix-patches@gnu.org; Wed, 25 Apr 2018 05:11:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fBGS5-0002Zn-W1 for guix-patches@gnu.org; Wed, 25 Apr 2018 05:11:02 -0400 Subject: [bug#31255] [PATCH] gnu: Add emacs-helm-system-packages Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60763) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fBGR9-0007MG-VD for guix-patches@gnu.org; Wed, 25 Apr 2018 05:10:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fBGR7-0002W2-9d for guix-patches@gnu.org; Wed, 25 Apr 2018 05:10:03 -0400 Received: from mail-pf0-x241.google.com ([2607:f8b0:400e:c00::241]:37342) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fBGR7-0002Vh-32 for guix-patches@gnu.org; Wed, 25 Apr 2018 05:10:01 -0400 Received: by mail-pf0-x241.google.com with SMTP id p6so14646675pfn.4 for ; Wed, 25 Apr 2018 02:10:01 -0700 (PDT) Received: from localhost.localdomain ([103.104.112.4]) by smtp.gmail.com with ESMTPSA id a81sm40489911pfc.168.2018.04.25.02.09.58 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 25 Apr 2018 02:09:59 -0700 (PDT) From: Pierre Neidhardt Date: Wed, 25 Apr 2018 14:39:48 +0530 Message-Id: <20180425090948.13904-1-ambrevar@gmail.com> 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: 31255@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-helm-system-packages): New variable. --- gnu/packages/emacs.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 3ddca5be4..44b704ed2 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -5190,6 +5190,34 @@ To make YASnippet aware of these snippets, add the above directory to Yasnippet.") (license license:gpl2+)))) +(define-public emacs-helm-system-packages + (let ((commit "986b7bd360a705053500c4ce2c9bea03dd7b24a6") + (revision "1")) + (package + (name "emacs-helm-system-packages") + (version (git-version "1.9.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacs-helm/helm-system-packages") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "19iklhpxgh5xx6h4dysf58nd46lmyb46xj601lf7kbwl6yq0y61f")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-helm" ,emacs-helm))) + (home-page "https://github.com/emacs-helm/helm-system-packages") + (synopsis "Helm System Packages is an interface to your package manager") + (description "List all available packages in Helm (with installed +packages displayed in their own respective face). Fuzzy-search, mark and +execute the desired action over any selections of packages: Install, +uninstall, display packages details (in Org Mode) or insert details at point, +find files owned by packages... And much more, including performing all the +above over the network.") + (license license:gpl3+)))) + (define-public emacs-memoize (package (name "emacs-memoize") -- 2.17.0