guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

84/88: gnu: stumpwm: Don't use unstable tarball.


From: guix-commits
Subject: 84/88: gnu: stumpwm: Don't use unstable tarball.
Date: Wed, 10 Apr 2019 23:44:50 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 4d2c51dec2aa90051a139579a664cb0842a088c9
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Apr 9 00:20:31 2019 +0200

    gnu: stumpwm: Don't use unstable tarball.
    
    * gnu/packages/lisp.scm (stumpwm)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/lisp.scm | 25 +++++++++++++------------
 1 file changed, 13 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 38836dd..91df757 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -980,18 +980,19 @@ from other CLXes around the net.")
   (package
     (name "stumpwm")
     (version "18.11")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/stumpwm/stumpwm/archive/";
-                    version ".tar.gz"))
-              (sha256
-               (base32 "177gxfk4c127i9crghx6fmkipznhgylvzgnjb2pna38g21gg6s39"))
-              (file-name (string-append "stumpwm-" version ".tar.gz"))
-              (patches
-               ;; This patch is included in the post-18.11 git master tree
-               ;; and can be removed when we move to the next release.
-               (search-patches "stumpwm-fix-broken-read-one-line.patch"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/stumpwm/stumpwm.git";)
+             (commit version)))
+       (file-name (git-file-name "stumpwm" version))
+       (sha256
+        (base32 "003g1fmh7446ws49866kzny4lrk1wf034dq5fa4m9mq1nzc7cwv7"))
+       (patches
+        ;; This patch is included in the post-18.11 git master tree
+        ;; and can be removed when we move to the next release.
+        (search-patches "stumpwm-fix-broken-read-one-line.patch"))))
     (build-system asdf-build-system/sbcl)
     (native-inputs `(("fiasco" ,sbcl-fiasco)
                      ("texinfo" ,texinfo)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]