mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: java-hamcrest-core: Update upstream location.
The checksum changed since the new location's archive contains no jar-files (except those of external libraries) and line endings are different. * gnu/packages/java.scm (java-hamcrest-core)[source]: Update source uri and checksum. [snippet]: Remove directory "lib" completely.
This commit is contained in:
parent
937bc2d137
commit
006728966a
1 changed files with 6 additions and 5 deletions
|
@ -1180,16 +1180,17 @@ (define-public java-hamcrest-core
|
||||||
(version "1.3")
|
(version "1.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://hamcrest.googlecode.com/files/"
|
(uri (string-append "https://github.com/hamcrest/JavaHamcrest/"
|
||||||
"hamcrest-" version ".tgz"))
|
"archive/hamcrest-java-" version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1hi0jv0zrgsf4l25aizxrgvxpsrmdklsmvw0jzwz7zv9s108whn6"))
|
"11g0s105fmwzijbv08lx8jlb521yravjmxnpgdx08fvg1kjivhva"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
;; Delete bundled jar archives.
|
;; Delete bundled thirds-party jar archives.
|
||||||
(for-each delete-file (find-files "." "\\.jar$"))
|
(delete-file-recursively "lib")
|
||||||
#t))))
|
#t))))
|
||||||
(build-system ant-build-system)
|
(build-system ant-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
|
Loading…
Reference in a new issue