gnu: zziplib: Don't use unstable tarball.
* gnu/packages/compression.scm (zziplib)[source]: Change to GIT-FETCH. [argumnents]: New field.
This commit is contained in:
parent
ee3a4d3678
commit
d0a52e65b5
|
@ -1573,14 +1573,22 @@ recreates the stored directory structure by default.")
|
||||||
(name "zziplib")
|
(name "zziplib")
|
||||||
(version "0.13.69")
|
(version "0.13.69")
|
||||||
(home-page "https://github.com/gdraheim/zziplib")
|
(home-page "https://github.com/gdraheim/zziplib")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method git-fetch)
|
||||||
(method url-fetch)
|
(uri (git-reference (url home-page)
|
||||||
(uri (string-append home-page "/archive/v" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0i052a7shww0fzsxrdp3rd7g4mbzx7324a8ysbc0br7frpblcql4"))))
|
"0fbk9k7ryas2wh2ykwkvm1pbi40i88rfvc3dydh9xyd7w2jcki92"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases (modify-phases %standard-phases
|
||||||
|
(add-before 'check 'make-files-writable
|
||||||
|
(lambda _
|
||||||
|
(for-each make-file-writable
|
||||||
|
(find-files "test" #:directories? #t))
|
||||||
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("zlib" ,zlib)))
|
`(("zlib" ,zlib)))
|
||||||
(native-inputs `(("perl" ,perl) ; for the documentation
|
(native-inputs `(("perl" ,perl) ; for the documentation
|
||||||
|
|
Loading…
Reference in New Issue