From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: Re: [PATCH] gnu: Add interrobang. Date: Wed, 17 Aug 2016 22:32:07 +0000 Message-ID: <87r39nni1k.fsf@we.make.ritual.n0.is> References: <87shu32lfe.fsf@we.make.ritual.n0.is> <87inuzrrci.fsf@we.make.ritual.n0.is> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54603) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ba9Nc-0005jE-Rj for guix-devel@gnu.org; Wed, 17 Aug 2016 18:32:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ba9Nb-0006VT-Ow for guix-devel@gnu.org; Wed, 17 Aug 2016 18:32:12 -0400 Received: from mithlond.libertad.in-berlin.de ([2001:67c:1400:2490::1]:42932 helo=beleriand.n0.is) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ba9Nb-0006VG-BM for guix-devel@gnu.org; Wed, 17 Aug 2016 18:32:11 -0400 Received: by beleriand.n0.is (OpenSMTPD) with ESMTPSA id aa114e2f TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO for ; Wed, 17 Aug 2016 22:32:07 +0000 (UTC) In-Reply-To: <87inuzrrci.fsf@we.make.ritual.n0.is> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org ng0 writes: > ng0 writes: > >> This patch adds interrobang. It should function, but I don't have zsh >> configured here in GuixSD, so my old config does not work here, and the >> system default is up to testing by other people. > > To explain this noisy comment: > I have a special interrobang-zsh-completion script which I prefer to the > default, bash. I ran interrobang but I still need to figure out why no > application launches. > I would prefer additional input. It works and is functional. I just had to alter the "set shell" in the config. >> From 91cc74e39a7ca001d24610f595fe6ce2cf38af0b Mon Sep 17 00:00:00 2001 >> From: ng0 >> Date: Wed, 17 Aug 2016 20:18:44 +0000 >> Subject: [PATCH] gnu: Add interrobang. >> >> * gnu/packages/admin.scm (interrobang): New variable. >> --- >> gnu/packages/admin.scm | 33 +++++++++++++++++++++++++++++++++ >> 1 file changed, 33 insertions(+) >> >> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm >> index 09a883c..4cc3757 100644 >> --- a/gnu/packages/admin.scm >> +++ b/gnu/packages/admin.scm >> @@ -1734,3 +1734,36 @@ highly portable. Great for heterogenous networks.") >> the status of your battery in the system tray.") >> (home-page "https://github.com/valr/cbatticon") >> (license license:gpl2+))) >> + >> +(define-public interrobang >> + (let ((revision "1") >> + (commit "896543735e1c99144765fdbd7b6e6b5afbd8b881")) >> + (package >> + (name "interrobang") >> + (version (string-append "0.0.0." revision "." (string-take commit 8))) >> + (source (origin >> + (method git-fetch) >> + (uri (git-reference >> + (url "git://github.com/TrilbyWhite/interrobang") >> + (commit commit))) >> + (file-name (string-append name "-" version "-checkout")) >> + (sha256 >> + (base32 >> + "1n13m70p1hfba5dy3i8hfclbr6k9q3d9dai3dg4jvhdhmxcpjzdf")))) >> + (build-system gnu-build-system) >> + (arguments >> + `(#:tests? #f ; no tests >> + #:phases >> + (modify-phases %standard-phases >> + (delete 'configure)) ; no configure script >> + #:make-flags (list (string-append "PREFIX=" >> + (assoc-ref %outputs "out"))))) >> + (inputs >> + `(("libx11" ,libx11))) >> + (native-inputs >> + `(("pkg-config" ,pkg-config))) >> + (synopsis "Tiny launcher menu packing a big bang syntax") >> + (description "Interrobang is a scriptable launcher menu with a customizable >> +shortcut syntax and completion options.") >> + (home-page "https://github.com/TrilbyWhite/interrobang") >> + (license license:gpl3)))) >> -- >> 2.9.3 >> >> >> -- >> ng0 >> For non-prism friendly talk find me on http://www.psyced.org > > -- > ng0 > For non-prism friendly talk find me on http://www.psyced.org > -- ng0 For non-prism friendly talk find me on http://www.psyced.org