guix-commits
[Top][All Lists]
Advanced

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

01/17: gnu: ocproxy: Don't use unstable tarball.


From: guix-commits
Subject: 01/17: gnu: ocproxy: Don't use unstable tarball.
Date: Wed, 13 Nov 2019 16:08:49 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 98ebc8fd2000fba9ee9300892d9c93957071c09f
Author: Efraim Flashner <address@hidden>
Date:   Wed Nov 13 21:10:24 2019 +0200

    gnu: ocproxy: Don't use unstable tarball.
    
    * gnu/packages/vpn.scm (ocproxy)[source]: Download using git-fetch.
---
 gnu/packages/vpn.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index a50fee6..364d0a2 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -213,14 +213,14 @@ the entire VPN in a network namespace accessible only 
through SSH.")
     (name "ocproxy")
     (version "1.60")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/cernekee/ocproxy/archive/v";
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/cernekee/ocproxy.git";)
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1b4rg3xq5jnrp2l14sw0msan8kqhdxmsd7gpw9lkiwvxy13pcdm7"))))
+                "03323nnhb4y9nzwva04mq7xg03dvdrgp689g89f69jqc261skcqx"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("autoconf" ,autoconf)



reply via email to

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