diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-11-13 21:10:24 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-11-13 21:10:24 +0200 |
commit | 98ebc8fd2000fba9ee9300892d9c93957071c09f (patch) | |
tree | 156cd54bb468991d2f04fe1fac67da6d4edbfcd7 | |
parent | 0e4cee0eba9578505e6ce6f1b78e642614856594 (diff) | |
download | guix-98ebc8fd2000fba9ee9300892d9c93957071c09f.tar guix-98ebc8fd2000fba9ee9300892d9c93957071c09f.tar.gz |
gnu: ocproxy: Don't use unstable tarball.
* gnu/packages/vpn.scm (ocproxy)[source]: Download using git-fetch.
-rw-r--r-- | gnu/packages/vpn.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index a50fee666f..364d0a2062 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) |