mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: maven-resources-plugin: Don't use unstable tarball.
* gnu/packages/maven.scm (maven-resources-plugin)[source]: Download using git-fetch.
This commit is contained in:
parent
05cd8837eb
commit
7cd50ad7fa
1 changed files with 6 additions and 5 deletions
|
@ -2944,13 +2944,14 @@ (define-public maven-resources-plugin
|
|||
(name "maven-resources-plugin")
|
||||
(version "3.1.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/apache/"
|
||||
"maven-resources-plugin/archive/"
|
||||
"maven-resources-plugin-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/apache/maven-resources-plugin")
|
||||
(commit (string-append "maven-resources-plugin-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1f5gnjg2xmqfxml6k0ydyd1sxxwzgnb24qn6avcc4mijwd8a84pl"))))
|
||||
"090k5j2y7ak54czfjjg3v7pdmdlgd96fbs91d1fd3vslm9zzndg8"))))
|
||||
(build-system ant-build-system)
|
||||
(arguments
|
||||
`(#:jar-name "maven-resources-plugin.jar"
|
||||
|
|
Loading…
Reference in a new issue