mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: java-assertj: Don't use unstable tarball.
* gnu/packages/java.scm (java-asssertj)[source]: Download using git-fetch.
This commit is contained in:
parent
b176f69fba
commit
04ca89d8ad
1 changed files with 6 additions and 5 deletions
|
@ -9129,13 +9129,14 @@ (define-public java-assertj
|
|||
(name "java-assertj")
|
||||
(version "3.8.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/joel-costigliola/"
|
||||
"assertj-core/archive/"
|
||||
"assertj-core-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/joel-costigliola/assertj-core")
|
||||
(commit (string-append "assertj-core-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1kf124fxskf548rklkg86294w2x6ajqrff94rrhyqns31danqkfz"))))
|
||||
"1k35cg2in7pzk4pbdjryr0pll5lgk1r6ngrn0j8cdlgi7w8zh2d1"))))
|
||||
(build-system ant-build-system)
|
||||
(arguments
|
||||
`(#:jar-name "java-assertj.jar"
|
||||
|
|
Loading…
Reference in a new issue