mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: java-plexus-compiler-api: Don't use unstable tarball.
* gnu/packages/java.scm (java-plexus-compiler-api)[source]: Download using git-fetch.
This commit is contained in:
parent
d0e6461370
commit
5723137a4c
1 changed files with 6 additions and 4 deletions
|
@ -3927,12 +3927,14 @@ (define-public java-plexus-compiler-api
|
|||
(name "java-plexus-compiler-api")
|
||||
(version "2.8.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/codehaus-plexus/plexus-compiler"
|
||||
"/archive/plexus-compiler-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/codehaus-plexus/plexus-compiler")
|
||||
(commit (string-append "plexus-compiler-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"09vmxs0807wsd26nbrwwj5l8ycmzazqycj52l7w6wjvkryywi69h"))))
|
||||
"1nq1gnn3s6z1j29gmi1hqbklsmm8b1lmnafb0191914f95mn18gk"))))
|
||||
(build-system ant-build-system)
|
||||
(arguments
|
||||
`(#:jar-name "plexus-compiler-api.jar"
|
||||
|
|
Loading…
Reference in a new issue