1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-17 04:20:44 +02:00

gnu: java-bsh: Don't use unstable tarball.

* gnu/packages/java.scm (java-bsh)[source]: Download using git-fetch.
This commit is contained in:
Efraim Flashner 2020-06-29 22:38:18 +03:00
parent 4e257acf48
commit 3e51f9eb3a
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -9230,13 +9230,14 @@ annotations.")
(name "java-bsh") (name "java-bsh")
(version "2.0b6") (version "2.0b6")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/beanshell/beanshell/archive/" (uri (git-reference
version ".tar.gz")) (url "https://github.com/beanshell/beanshell")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1bawkxk6jyc75hxvzkpz689h73cn3f222m0ar3nvb0dal2b85kfv")))) "0kz3f0xjack6c9syssi4qjw1rbd3q5963sk5pmr143hiibxa9csw"))))
(build-system ant-build-system) (build-system ant-build-system)
(arguments (arguments
`(#:build-target "jarall" `(#:build-target "jarall"