guix-commits
[Top][All Lists]
Advanced

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

02/09: gnu: fcgiwrap: Don't use unstable tarball.


From: guix-commits
Subject: 02/09: gnu: fcgiwrap: 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 20ab34c16f612df6ca02d25e2e357c37443cfd83
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Sun Feb 10 18:14:54 2019 +0100

    gnu: fcgiwrap: Don't use unstable tarball.
    
    * gnu/packages/web.scm (fcgiwrap)[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 7238987..6578ce5 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -413,16 +413,16 @@ APIs.")
     (version "1.1.0")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/gnosek/fcgiwrap/";
-                           "archive/" version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/gnosek/fcgiwrap.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "07y6s4mm86cv7p1ljz94sxnqa89y9amn3vzwsnbq5hrl4vdy0zac"))))
+        (base32 "1ryw66h9aazi83amk8l7ha8k5g0c7qvk5g6jv376a1ws9xk2qw6f"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f ; no tests included
+     `(#:tests? #f                      ; no tests included
        #:make-flags (list "CC=gcc")))
     (native-inputs
      `(("autoconf" ,autoconf)



reply via email to

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