From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff Mickey Subject: [PATCH] gnu: add the rc shell package Date: Thu, 09 Jul 2015 18:02:56 -0700 Message-ID: <871tggddtr.fsf@codemac.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44316) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZDMiU-00007Y-Sx for guix-devel@gnu.org; Thu, 09 Jul 2015 21:03:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZDMiR-0001Zr-LE for guix-devel@gnu.org; Thu, 09 Jul 2015 21:03:02 -0400 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:56878) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZDMiR-0001ZA-Az for guix-devel@gnu.org; Thu, 09 Jul 2015 21:02:59 -0400 Received: from nevada.codemac.net (unknown [208.187.204.132]) by mail.messagingengine.com (Postfix) with ESMTPA id 36EA76800C1 for ; Thu, 9 Jul 2015 21:02:57 -0400 (EDT) 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Hi guix-devel! I've never contributed a patch to guix, so please let me know if I'm missing any prerequisites for contribution. This adds the rc shell to guix. // jeff mickey --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-add-the-rc-shell-package.patch Content-Description: gnu add the rc shell package >From 5deadfb23d8235101220310d0c47626c1d4c219f Mon Sep 17 00:00:00 2001 From: Jeff Mickey Date: Thu, 9 Jul 2015 17:39:42 -0700 Subject: [PATCH] gnu: add the rc shell package * gnu/packages/rc.scm (rc): Add the rc package definition This patch adds the rc shell package to guix. It is byron's rc, not plan9 rc - and on other distributions 'rc' refers to byron's rc and 'plan9port' or some other meta package install the plan9 set of tools which includes rc. It has a zlib license. --- gnu/packages/rc.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 gnu/packages/rc.scm diff --git a/gnu/packages/rc.scm b/gnu/packages/rc.scm new file mode 100644 index 0000000..6fc001c --- /dev/null +++ b/gnu/packages/rc.scm @@ -0,0 +1,44 @@ +(define-module (gnu packages rc) + #:use-module (gnu packages autotools) + #:use-module (gnu packages perl) + #:use-module (gnu packages pkg-config) + #:use-module (gnu packages readline) + #:use-module (guix build gnu-build-system) + #:use-module (guix build utils) + #:use-module (guix build-system gnu) + #:use-module (guix download) + #:use-module (guix licenses) + #:use-module (guix packages)) + + +(define-public rc + (package + (name "rc") + (version "1.7.4") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/rakitzis/rc/tarball/" + "c884da53a7c885d46ace2b92de78946855b18e92")) + (sha256 + (base32 "05hlnqcxaw08m1xypk733hajwaap5pr354ndmrm86k0flisjk0fw")))) + (build-system gnu-build-system) + (arguments `(#:configure-flags + '("--with-edit=gnu") + #:phases + (modify-phases %standard-phases + (add-before 'configure 'autoreconf (lambda _ + (zero? (system* "autoreconf" "-vfi"))))) + #:tests? #f)) + (inputs `(("readline" ,readline) + ("perl" ,perl))) + (native-inputs `(("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (synopsis "An alternative implementation of the plan 9 rc shell.") + (description + "This is a reimplementation for Unix, by Byron Rakitzis, of +the Plan 9 shell. It has a small feature set similar to a traditional Bourne +shell, but with a much cleaner and simpler syntax.") + (home-page "http://github.com/rakitzis/rc") + (license zlib))) -- 2.4.5 --=-=-=--