From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34739) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4ta-00063J-Ta for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4tS-0003MB-RO for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:29 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37430) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hi4t6-00037l-3t for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:08 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hi4t5-0002Nd-Uy for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:04 -0400 Subject: [bug#36467] [PATCH 10/12] gnu: Add bst. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:34572) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4sw-0005qX-Iu for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4sp-000301-2r for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:49 -0400 Received: from mout02.posteo.de ([185.67.36.66]:36019) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hi4sl-0002tE-FL for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:43 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 8E9652400E6 for ; Tue, 2 Jul 2019 00:33:09 +0200 (CEST) From: Guillaume LE VAILLANT Date: Tue, 2 Jul 2019 00:31:25 +0200 Message-Id: <20190701223127.32222-10-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-bst, cl-bst): New variables. --- gnu/packages/lisp.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index ad77792cb9..84663aebf0 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -6284,3 +6284,33 @@ system.") =20 (define-public cl-ledger (sbcl-package->cl-source-package sbcl-cl-ledger)) + +(define-public sbcl-bst + (let ((commit "0656b90dce2dbdb898e1f40e4a1501c141e66e9b") + (revision "1")) + (package + (name "sbcl-bst") + (version (git-version "1.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/glv2/bst.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1bsk20vbvgzivgvnnmmjl376ya4c5j4139m8i0m3nwkaa9kigp6c")))) + (build-system asdf-build-system/sbcl) + (native-inputs + `(("alexandria" ,sbcl-alexandria) + ("fiveam" ,sbcl-fiveam))) + (synopsis "Binary search tree for Common Lisp") + (description + "BST is a Common Lisp library for working with binary search tree= s that +can contain any kind of values.") + (home-page "https://github.com/glv2/bst") + (license license:gpl3)))) + +(define-public cl-bst + (sbcl-package->cl-source-package sbcl-bst)) --=20 2.22.0