mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: dotherside: Don't use unstable tarball.
* gnu/packages/qt.scm (dotherside)[source]: Download using git-fetch.
This commit is contained in:
parent
6a9aa795ee
commit
d43f173273
1 changed files with 6 additions and 5 deletions
|
@ -2013,13 +2013,14 @@ (define-public dotherside
|
|||
(version "0.6.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/filcuc/DOtherSide/"
|
||||
"archive/v" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/filcuc/DOtherSide")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0azq7qlsrfdwbd6qsi7d3c1knn42qw0r47g43xf7clwbinapswpz"))))
|
||||
"0r3nh02j2wk0w8pcjnd6myygq7iz0pbpgniv36sjj4k03zag65xn"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
`(("qttools" ,qttools)))
|
||||
|
|
Loading…
Reference in a new issue