diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-01-08 15:25:07 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-01-08 23:21:14 +0100 |
commit | 639e641cdf5e86cd49362f7bafd931633339b21f (patch) | |
tree | 0fcd642e1c17d1addb868c678ae757f59c140675 | |
parent | 01bb039e7b408893009d15f56cfcbdc8af70a4af (diff) | |
download | patches-639e641cdf5e86cd49362f7bafd931633339b21f.tar patches-639e641cdf5e86cd49362f7bafd931633339b21f.tar.gz |
gnu: Add clojure-tools-cli.
* gnu/packages/clojure.scm (clojure-tools-cli): New variable.
-rw-r--r-- | gnu/packages/clojure.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index a9cabfe008..9a1ceed66c 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com> ;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz> ;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2020 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -296,3 +297,27 @@ tree. (description "Tools for writing macros.") (home-page "https://github.com/clojure/tools.macro") (license license:epl1.0))) + +(define-public clojure-tools-cli + (package + (name "clojure-tools-cli") + (version "0.4.2") + (home-page "https://github.com/clojure/tools.cli") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit (string-append "tools.cli-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yqlm8lwbcjm0dp032z7vzc4bdlmc4jixznvf4adsqhvqw85hvj2")))) + (build-system clojure-build-system) + (arguments + '(#:source-dirs '("src/main/clojure/") + #:test-dirs '("src/test/clojure/") + #:doc-dirs '())) + (synopsis "Clojure library for working with command-line arguments") + (description + "The @code{tools.cli} library provides Clojure programmers with tools to +work with command-line arguments.") + (license license:epl1.0))) |