guix-commits
[Top][All Lists]
Advanced

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

01/09: gnu: mod-wsgi: Don't use unstable tarball.


From: guix-commits
Subject: 01/09: gnu: mod-wsgi: Don't use unstable tarball.
Date: Mon, 11 Feb 2019 20:34:50 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit bff44abb14fa8e411fa1fdc54e9115dda0e02fb6
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Sun Feb 10 18:08:59 2019 +0100

    gnu: mod-wsgi: Don't use unstable tarball.
    
    * gnu/packages/web.scm (mod-wsgi)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/web.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 158d542..7238987 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -164,17 +164,17 @@ and its related documentation.")
     (name "mod-wsgi")
     (version "4.5.22")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/GrahamDumpleton/mod_wsgi/archive/";
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/GrahamDumpleton/mod_wsgi.git";)
+                    (commit version)))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "0n1yhmrfp8mjbsngmyjl937c6rc0069p6wdi1lknrbn1q42hzw6q"))))
+                "1q90xw2cbhka5gcd6yc69iir73x4gm7fm75qpkins2ryfl6w1q3f"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:tests? #f ;; TODO: Can't figure out if there are tests
+     '(#:tests? #f                 ; TODO: can't figure out if there are tests
        #:make-flags (list
                      (string-append "DESTDIR="
                                     (assoc-ref %outputs "out"))



reply via email to

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