From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43306) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fL2up-00023H-Th for guix-patches@gnu.org; Tue, 22 May 2018 04:45:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fL2uk-0001kE-Ew for guix-patches@gnu.org; Tue, 22 May 2018 04:45:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:35701) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fL2uk-0001k8-BQ for guix-patches@gnu.org; Tue, 22 May 2018 04:45:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fL2uk-0002AQ-2i for guix-patches@gnu.org; Tue, 22 May 2018 04:45:02 -0400 Subject: [bug#31548] [PATCH] gnu: Add sbcl-stumpwm-checkout. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43105) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fL2te-0001in-F1 for guix-patches@gnu.org; Tue, 22 May 2018 04:43:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fL2tY-0001KX-LI for guix-patches@gnu.org; Tue, 22 May 2018 04:43:54 -0400 Received: from mail-wm0-x232.google.com ([2a00:1450:400c:c09::232]:40159) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fL2tY-0001Jx-ED for guix-patches@gnu.org; Tue, 22 May 2018 04:43:48 -0400 Received: by mail-wm0-x232.google.com with SMTP id j5-v6so31181696wme.5 for ; Tue, 22 May 2018 01:43:48 -0700 (PDT) From: Oleg Pykhalov Date: Tue, 22 May 2018 11:43:32 +0300 Message-Id: <20180522084332.30409-1-go.wigust@gmail.com> 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: 31548@debbugs.gnu.org * gnu/packages/lisp.scm (sbcl-stumpwm-checkout): New public variable. --- gnu/packages/lisp.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 1f8e6ab42..4c10ec39a 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -987,6 +987,25 @@ productive, customizable lisp based systems.") (license license:gpl2+) (properties `((ecl-variant . ,(delay ecl-stumpwm)))))) +(define-public sbcl-stumpwm-checkout + (let ((commit "cec7fd9e963e5da59b05ba0ffbe292dc94fd2947")) + (package + (inherit sbcl-stumpwm) + (version (git-version (package-version sbcl-stumpwm) "1" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stumpwm/stumpwm.git") + (commit commit))) + (file-name (git-file-name (package-name sbcl-stumpwm) version)) + (sha256 + (base32 + "1qyvhw73dghs167hcds1k2021w2hakh99zfv0039w7lx259gazl9")))) + (inputs + `(("sbcl-alexandria" ,sbcl-alexandria) + ,@(package-inputs sbcl-stumpwm)))))) + (define-public cl-stumpwm (sbcl-package->cl-source-package sbcl-stumpwm)) -- 2.17.0