mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -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")
|
(name "maven-resources-plugin")
|
||||||
(version "3.1.0")
|
(version "3.1.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/apache/"
|
(uri (git-reference
|
||||||
"maven-resources-plugin/archive/"
|
(url "https://github.com/apache/maven-resources-plugin")
|
||||||
"maven-resources-plugin-" version ".tar.gz"))
|
(commit (string-append "maven-resources-plugin-" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1f5gnjg2xmqfxml6k0ydyd1sxxwzgnb24qn6avcc4mijwd8a84pl"))))
|
"090k5j2y7ak54czfjjg3v7pdmdlgd96fbs91d1fd3vslm9zzndg8"))))
|
||||||
(build-system ant-build-system)
|
(build-system ant-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:jar-name "maven-resources-plugin.jar"
|
`(#:jar-name "maven-resources-plugin.jar"
|
||||||
|
|
Loading…
Reference in a new issue