mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-26 02:15:20 +01:00
nongnu: leiningen: Update to 2.9.3.
* nongnu/packages/clojure.scm (leiningen, leiningen-jar): Update to 2.9.3.
This commit is contained in:
parent
d3e4160d95
commit
c5f87bd75b
1 changed files with 6 additions and 5 deletions
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
;;; Copyright © 2020 Jelle Licht <jlicht@fsfe.org>
|
;;; Copyright © 2020 Jelle Licht <jlicht@fsfe.org>
|
||||||
|
;;; Copyright © 2020 Alex Griffin <a@ajgrf.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is not part of GNU Guix.
|
;;; This file is not part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -29,15 +30,15 @@
|
||||||
(define leiningen-jar
|
(define leiningen-jar
|
||||||
(package
|
(package
|
||||||
(name "leiningen-jar")
|
(name "leiningen-jar")
|
||||||
(version "2.9.1")
|
(version "2.9.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/technomancy/leiningen/releases/download/"
|
(uri (string-append "https://github.com/technomancy/leiningen/releases/download/"
|
||||||
version "/leiningen-2.9.1-standalone.zip"))
|
version "/leiningen-" version "-standalone.zip"))
|
||||||
(file-name "leiningen-standalone.jar")
|
(file-name "leiningen-standalone.jar")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1y2mva5s2w2szzn1b9rhz0dvkffls4ravii677ybcf2w9wd86z7a"))))
|
"1fybxlyvw2akgnjlwm03lfg7a6ryaj6mlcs71xbns8lpphcdzq93"))))
|
||||||
(build-system trivial-build-system)
|
(build-system trivial-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((guix build utils))
|
`(#:modules ((guix build utils))
|
||||||
|
@ -59,7 +60,7 @@ lets you focus on your code.")
|
||||||
(package
|
(package
|
||||||
(inherit leiningen-jar)
|
(inherit leiningen-jar)
|
||||||
(name "leiningen")
|
(name "leiningen")
|
||||||
(version "2.9.1")
|
(version "2.9.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -68,7 +69,7 @@ lets you focus on your code.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0qv9vp6ypdilwv818fpwknr9sj40sz2vdcqxbd42m1l0ljjggiy1"))))
|
"15jkxb9rz5vci4bjq9b4n6bpz9fs280yf17mqfi6k7syxxawf3mm"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
`(#:tests? #f
|
||||||
|
|
Loading…
Reference in a new issue