From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:53575) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVzFP-0003nU-MH for guix-patches@gnu.org; Wed, 29 May 2019 10:08:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVzFO-00006l-Dj for guix-patches@gnu.org; Wed, 29 May 2019 10:08:07 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:45899) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hVzFN-00005A-25 for guix-patches@gnu.org; Wed, 29 May 2019 10:08:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hVzFM-0003x0-RV for guix-patches@gnu.org; Wed, 29 May 2019 10:08:04 -0400 Subject: [bug#35991] [PATCH 9/9] gnu: Add sbcl-dbus. Resent-Message-ID: From: Pierre Neidhardt Date: Wed, 29 May 2019 16:07:33 +0200 Message-Id: <20190529140733.31108-9-mail@ambrevar.xyz> In-Reply-To: <20190529140733.31108-1-mail@ambrevar.xyz> References: <20190529140733.31108-1-mail@ambrevar.xyz> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 35991@debbugs.gnu.org * gnu/packages/lisp.scm (sbcl-dbus): New variable. --- gnu/packages/lisp.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 31d2e8d550..2aa73aaa38 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -5505,3 +5505,31 @@ and @code{kqueue(2)}), a pathname library and file-system utilities.") (("\\(:file \"sockets\" :depends-on \\(\"pkgdcl\" \"defsuites\"\\)\\)") ""))))))) (synopsis "Common Lisp I/O library"))) + +(define-public sbcl-dbus + (let ((commit "24b452df3a45ca5dc95015500f34baad175c981a") + (revision "1")) + (package + (name "sbcl-dbus") + (build-system asdf-build-system/sbcl) + (version (git-version "20190408" revision commit)) + (home-page "https://github.com/death/dbus") + (source + (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0fw2q866yddbf23nk9pxphm9gsasx35vjyss82xzvndnjmzlqfl5")))) + (inputs + `(("alexandria" ,sbcl-alexandria) + ("trivial-garbage" ,sbcl-trivial-garbage) + ("babel" ,sbcl-babel) + ("sbcl-iolib" ,sbcl-iolib))) ; TODO: Fails because iolib-multiplex cannot be found. + (synopsis "D-BUS client library for Common Lisp") + (description "This is a Common Lisp library that allows to publish D-Bus +objects as well as send and notify other objects connected to a bus.") + (license license:bsd-2)))) -- 2.21.0