12 lines
390 B
Scheme
12 lines
390 B
Scheme
;; Guix manifest
|
|
;;
|
|
;; If you're running GNU Guix, this file describes the dependencies necessary to
|
|
;; develop/build the program. Use it with `guix shell --manifest=manifest.scm`.
|
|
(specifications->manifest
|
|
(list
|
|
;; No issues running this OpenJDK 21 program on Debian Stable (OpenJDK 17).
|
|
"openjdk@21"
|
|
;; Works fine with clojure-tools from Guix.
|
|
"clojure-tools"
|
|
"beancount"
|
|
))
|