From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:35109) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4vR-0006dl-2X for guix-patches@gnu.org; Mon, 01 Jul 2019 18:37:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4vE-0004WB-Bx for guix-patches@gnu.org; Mon, 01 Jul 2019 18:37:18 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37455) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hi4v0-0004Oi-PO for guix-patches@gnu.org; Mon, 01 Jul 2019 18:37:13 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hi4v0-0002SI-IM for guix-patches@gnu.org; Mon, 01 Jul 2019 18:37:02 -0400 Subject: [bug#36467] [PATCH 08/12] gnu: Add cambl. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:34982) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4uV-0006Np-5C for guix-patches@gnu.org; Mon, 01 Jul 2019 18:36:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4uQ-0004E7-TH for guix-patches@gnu.org; Mon, 01 Jul 2019 18:36:29 -0400 Received: from mout02.posteo.de ([185.67.36.66]:40219) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hi4uN-0002pA-9D for guix-patches@gnu.org; Mon, 01 Jul 2019 18:36:24 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 5107B2400E5 for ; Tue, 2 Jul 2019 00:33:06 +0200 (CEST) From: Guillaume LE VAILLANT Date: Tue, 2 Jul 2019 00:31:23 +0200 Message-Id: <20190701223127.32222-8-glv@posteo.net> In-Reply-To: <20190701223127.32222-1-glv@posteo.net> References: <20190701222716.12254-1-glv@posteo.net> <20190701223127.32222-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-cambl, cl-cambl): New variables. --- gnu/packages/lisp.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 70b5ed4b79..425b8029fd 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -6217,3 +6217,28 @@ sharing identical sublists.") =20 (define-public cl-fprog (sbcl-package->cl-source-package sbcl-fprog)) + +(define-public sbcl-cambl + (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636") + (revision "1")) + (package + (inherit sbcl-fprog) + (name "sbcl-cambl") + (version (git-version "4.0.0" revision commit)) + (native-inputs + `(("xlunit" ,sbcl-xlunit))) + (inputs + `(("alexandria" ,sbcl-alexandria) + ("cl-containers" ,sbcl-cl-containers) + ("local-time" ,sbcl-local-time) + ("periods" ,sbcl-periods) + ("fprog" ,sbcl-fprog))) + (synopsis "Commoditized amounts and balances for Common Lisp") + (description + "Cambl is a Common Lisp library providing a convenient facility f= or +working with commoditized values. It does not allow compound units (and= so is +not suited for scientific operations) but does work rather nicely for th= e +purpose of financial calculations.")))) + +(define-public cl-cambl + (sbcl-package->cl-source-package sbcl-cambl)) --=20 2.22.0