From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34692) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4tT-0005x8-Fv for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4t6-00037y-5i for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:16 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37427) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hi4t4-00036z-LF for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hi4t4-0002NE-Cz for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:02 -0400 Subject: [bug#36467] [PATCH 01/12] gnu: Add fprog. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:34491) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4sP-0005nJ-5C for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4sL-0002o2-Bt for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:20 -0400 Received: from mout02.posteo.de ([185.67.36.66]:54397) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hi4sH-000177-4P for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:14 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id BABA22400E5 for ; Tue, 2 Jul 2019 00:32:35 +0200 (CEST) From: Guillaume LE VAILLANT Date: Tue, 2 Jul 2019 00:31:16 +0200 Message-Id: <20190701223127.32222-1-glv@posteo.net> In-Reply-To: <20190701222716.12254-1-glv@posteo.net> References: <20190701222716.12254-1-glv@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 36467@debbugs.gnu.org Cc: Guillaume LE VAILLANT * gnu/packages/lisp.scm (sbcl-fprog, cl-fprog): New variables. --- gnu/packages/lisp.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 58813c2d84..88dfa51e7a 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -5996,3 +5996,30 @@ cookie headers, cookie creation, cookie jar creati= on and more.") (description "cl-cookie is a Common Lisp library featuring parsing= of cookie headers, cookie creation, cookie jar creation and more.") (license license:bsd-2)))) + +(define-public sbcl-fprog + (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636") + (revision "1")) + (package + (name "sbcl-fprog") + (version (git-version "1.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jwiegley/cambl.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "103mry04j2k9vznsxm7wcvccgxkil92cdrv52miwcmxl8daa4jiz")))) + (build-system asdf-build-system/sbcl) + (synopsis "Functional programming utilities for Common Lisp") + (description + "fprog is a Common Lisp library allowing iteration over immutable= lists +sharing identical sublists.") + (home-page "https://github.com/jwiegley/cambl") + (license license:bsd-3)))) + +(define-public cl-fprog + (sbcl-package->cl-source-package sbcl-fprog)) --=20 2.22.0