mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 21:49:34 -05:00
gnu: java-hamcrest-core: Don't use unstable tarball.
* gnu/packages/java.scm (java-hamcrest-core)[source]: Download using git-fetch.
This commit is contained in:
parent
3e3364fc52
commit
2703d57343
1 changed files with 7 additions and 5 deletions
|
@ -9,7 +9,7 @@
|
||||||
;;; Copyright © 2017, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2018, 2019 Gábor Boskovits <boskovits@gmail.com>
|
;;; Copyright © 2018, 2019 Gábor Boskovits <boskovits@gmail.com>
|
||||||
;;; Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
|
;;; Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
|
||||||
;;; Copyright © 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2019, 2020 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
|
;;; Copyright © 2019, 2020 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -3435,12 +3435,14 @@ (define-public java-hamcrest-core
|
||||||
(name "java-hamcrest-core")
|
(name "java-hamcrest-core")
|
||||||
(version "1.3")
|
(version "1.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/hamcrest/JavaHamcrest/"
|
(uri (git-reference
|
||||||
"archive/hamcrest-java-" version ".tar.gz"))
|
(url "https://github.com/hamcrest/JavaHamcrest/")
|
||||||
|
(commit (string-append "hamcrest-java-" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"11g0s105fmwzijbv08lx8jlb521yravjmxnpgdx08fvg1kjivhva"))
|
"16fxxkrd31ahqvcaby30jgh3z1i0zxh51m24hxgz0z2agxj6bc63"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
|
|
Loading…
Reference in a new issue