me
/
guix
Archived
1
0
Fork 0

gnu: withershins: Don't use unstable tarball.

* gnu/packages/code.scm (withershins)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-11-03 06:38:04 +01:00
parent 66c2df9ee8
commit 3dd14ea73c
No known key found for this signature in database
GPG Key ID: D889B0F018C5493C
1 changed files with 9 additions and 9 deletions

View File

@ -320,15 +320,15 @@ features that are not supported by the standard @code{stdio} implementation.")
(package (package
(name "withershins") (name "withershins")
(version "0.1") (version "0.1")
(source (origin (source
(method url-fetch) (origin
(uri (string-append (method git-fetch)
"https://github.com/cameronwhite/withershins/archive/v" (uri (git-reference
version ".tar.gz")) (url "https://github.com/cameronwhite/withershins.git")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "v" version))))
(sha256 (file-name (git-file-name name version))
(base32 (sha256
"08z3lyvswx7sad10637vfpwglbcbgzzcpfihw0x8lzr74f3b70bh")))) (base32 "1cviqvbbcwljm1zx12j6511hazr3kscwrvcyifrkfi4fpy5z985m"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
`(#:out-of-source? #f `(#:out-of-source? #f