From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:44375) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVyfe-0004Zd-KJ for guix-patches@gnu.org; Wed, 29 May 2019 09:31:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVyfd-00082i-DF for guix-patches@gnu.org; Wed, 29 May 2019 09:31:10 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:44823) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hVyfd-00082b-AU for guix-patches@gnu.org; Wed, 29 May 2019 09:31:09 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hVyfd-0002gX-6A for guix-patches@gnu.org; Wed, 29 May 2019 09:31:09 -0400 Subject: [bug#35990] [PATCH 9/9] gnu: Add sbcl-dbus. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:44083) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVyeh-00046j-1C for guix-patches@gnu.org; Wed, 29 May 2019 09:30:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVyeg-0006mM-1J for guix-patches@gnu.org; Wed, 29 May 2019 09:30:11 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:34597) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hVyef-0006bQ-Rt for guix-patches@gnu.org; Wed, 29 May 2019 09:30:09 -0400 Received: from localhost.localdomain (lfbn-1-4117-19.w92-169.abo.wanadoo.fr [92.169.116.19]) (Authenticated sender: mail@ambrevar.xyz) by relay11.mail.gandi.net (Postfix) with ESMTPSA id 8A40C10001F for ; Wed, 29 May 2019 13:29:58 +0000 (UTC) From: Pierre Neidhardt Date: Wed, 29 May 2019 15:29:56 +0200 Message-Id: <20190529132956.7454-9-mail@ambrevar.xyz> In-Reply-To: <20190529132956.7454-1-mail@ambrevar.xyz> References: <20190529132917.7142-1-mail@ambrevar.xyz> <20190529132956.7454-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: 35990@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