diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2020-12-01 13:16:56 +0100 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2020-12-01 13:37:33 +0100 |
commit | 52b81c32aec3bf6d706cf15295df5e15d46c7fef (patch) | |
tree | f41aaa1107861d5b8de69fbeaa895d7eda627b06 | |
parent | 4f298ebac757bf13c7768c50031d251c460a8240 (diff) |
gnu: Add gtwiwtg.
* gnu/packages/lisp-xyz.scm (cl-gtwiwtg, ecl-gtwiwtg, sbcl-gtwiwtg): New variables.
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index d8c5324e70..cbd32301b3 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -12103,3 +12103,34 @@ from Common Lisp. It provides a progress bar.") (define-public ecl-trivial-download (sbcl-package->ecl-package sbcl-trivial-download)) + +(define-public sbcl-gtwiwtg + (package + (name "sbcl-gtwiwtg") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cbeo/gtwiwtg/") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lkraw0dwh4is4x5sp5rjrw6f93m0gr9849abrbi12s25ws7jbw4")))) + (build-system asdf-build-system/sbcl) + (native-inputs + `(("osicat" ,sbcl-osicat) + ("prove" ,sbcl-prove))) + (home-page "https://github.com/cbeo/gtwiwtg/") + (synopsis "Naive generators for Common Lisp") + (description + "The GTWIWTG library (Generators The Way I Want Them Generated -- +technically not generators, but iterators) is meant to be small, explorable, +and understandable.") + (license license:gpl3))) + +(define-public cl-gtwiwtg + (sbcl-package->cl-source-package sbcl-gtwiwtg)) + +(define-public ecl-gtwiwtg + (sbcl-package->ecl-package sbcl-gtwiwtg)) |