mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: java-eclipse-jetty-test-helper: Don't use unstable tarball.
* gnu/packages/web.scm (java-eclipse-jetty-test-helper)[source]: Download using git-fetch.
This commit is contained in:
parent
1597613488
commit
2fea2b6414
1 changed files with 6 additions and 4 deletions
|
@ -6264,12 +6264,14 @@ (define-public java-eclipse-jetty-test-helper
|
||||||
(name "java-eclipse-jetty-test-helper")
|
(name "java-eclipse-jetty-test-helper")
|
||||||
(version "4.2")
|
(version "4.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/eclipse/jetty.toolchain/"
|
(uri (git-reference
|
||||||
"archive/jetty-test-helper-" version ".tar.gz"))
|
(url "https://github.com/eclipse/jetty.toolchain/")
|
||||||
|
(commit (string-append "jetty-test-helper-" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1jd6r9wc26fa11si4rn2gvy8ml8q4zw1nr6v04mjp8wvwpgvzwx5"))))
|
"1g7cdh03nfwbdxzvwm84ysgvw08xx7431lsjryj2gmf3lrqpizgb"))))
|
||||||
(build-system ant-build-system)
|
(build-system ant-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:jar-name "eclipse-jetty-test-helper.jar"
|
`(#:jar-name "eclipse-jetty-test-helper.jar"
|
||||||
|
|
Loading…
Reference in a new issue