gnu: ocproxy: Don't use unstable tarball.

* gnu/packages/vpn.scm (ocproxy)[source]: Download using git-fetch.
This commit is contained in:
Efraim Flashner 2019-11-13 21:10:24 +02:00
parent 0e4cee0eba
commit 98ebc8fd20
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -213,14 +213,14 @@ (define-public ocproxy
(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)