mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: ddate: Don't use unstable tarball.
* gnu/packages/linux.scm (ddate)[source]: Download using git-fetch.
This commit is contained in:
parent
2c9cb2f0a1
commit
eb4cfec276
1 changed files with 6 additions and 5 deletions
|
@ -1486,12 +1486,13 @@ block devices, UUIDs, TTYs, and many other tools.")
|
|||
(name "ddate")
|
||||
(version "0.2.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/bo0ts/ddate/archive/v"
|
||||
version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/bo0ts/ddate")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1bbqqq8mswj4bp9083gxjaky5ysfznax4cynsqwmy125z053yg6m"))))
|
||||
(base32 "1qchxnxvghbma6gp1g78wnjxsri0b72ha9axyk31cplssl7yn73f"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments '(#:tests? #f))
|
||||
(home-page "https://github.com/bo0ts/ddate")
|
||||
|
|
Loading…
Reference in a new issue