gnu: java-junit: Don't use unstable tarball.

* gnu/packages/java.scm (java-junit)[source]: Download using git-fetch.
[home-page]: Update home-page.
This commit is contained in:
Efraim Flashner 2020-03-29 22:05:31 +03:00
parent 2703d57343
commit 42c1c59ea1
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3542,13 +3542,14 @@ (define-public java-junit
(name "java-junit")
(version "4.12")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/junit-team/junit/"
"archive/r" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/junit-team/junit/")
(commit (string-append "r" version))))
(file-name (git-file-name name version))
(sha256
(base32
"090dn5v1vs0b3acyaqc0gjf6p8lmd2h24wfzsbq7sly6b214anws"))
"1j8avi91px1z8rjc89cfikwrvfifdmmsarwiyrcnr59ynvpz0v8h"))
(modules '((guix build utils)))
(snippet
'(begin
@ -3561,7 +3562,7 @@ (define-public java-junit
#:jar-name "junit.jar"))
(inputs
`(("java-hamcrest-core" ,java-hamcrest-core)))
(home-page "https://junit.org/")
(home-page "https://junit.org/junit4/")
(synopsis "Test framework for Java")
(description
"JUnit is a simple framework to write repeatable tests for Java projects.