gnu: java-javaee-servletapi: Don't use unstable tarball.
* gnu/packages/java.scm (java-javaee-servletapi)[source]: Use git-fetch.master
parent
d967fbc13a
commit
44bac44ca1
|
@ -10,6 +10,7 @@
|
||||||
;;; Copyright © 2018, 2019 Gábor Boskovits <boskovits@gmail.com>
|
;;; Copyright © 2018, 2019 Gábor Boskovits <boskovits@gmail.com>
|
||||||
;;; Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
|
;;; Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
|
||||||
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
;;; Copyright © 2019 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -2940,14 +2941,15 @@ API and version 2.1 of the Java ServerPages API.")
|
||||||
(package
|
(package
|
||||||
(name "java-javaee-servletapi")
|
(name "java-javaee-servletapi")
|
||||||
(version "3.1.0")
|
(version "3.1.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/javaee/servlet-spec/"
|
(uri (git-reference
|
||||||
"archive/" version ".zip"))
|
(url "https://github.com/javaee/servlet-spec.git")
|
||||||
(file-name (string-append name "-" version ".zip"))
|
(commit version)))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"0m6p13vgfb1ihich1jp5j6fqlhkjsrkn32c86bsbkryp38ipwg8w"))))
|
(base32
|
||||||
|
"0s03lj8w5an70lkqbjycgfrfk0kc07vbfav91jzk87gh3awf9ksl"))))
|
||||||
(build-system ant-build-system)
|
(build-system ant-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:jar-name "javax-servletapi.jar"
|
`(#:jar-name "javax-servletapi.jar"
|
||||||
|
|
Reference in New Issue