gnu: ocproxy: Don't use unstable tarball.
* gnu/packages/vpn.scm (ocproxy)[source]: Download using git-fetch.
This commit is contained in:
parent
0e4cee0eba
commit
98ebc8fd20
1 changed files with 6 additions and 6 deletions
|
@ -213,14 +213,14 @@ the entire VPN in a network namespace accessible only through SSH.")
|
||||||
(name "ocproxy")
|
(name "ocproxy")
|
||||||
(version "1.60")
|
(version "1.60")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/cernekee/ocproxy/archive/v"
|
(url "https://github.com/cernekee/ocproxy.git")
|
||||||
version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1b4rg3xq5jnrp2l14sw0msan8kqhdxmsd7gpw9lkiwvxy13pcdm7"))))
|
"03323nnhb4y9nzwva04mq7xg03dvdrgp689g89f69jqc261skcqx"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
|
|
Reference in a new issue