diff options
author | Roman Scherer <roman@burningswell.com> | 2024-09-07 11:51:35 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-09-12 19:10:04 +0200 |
commit | 24b883916357cc15a10e650381e47e20fab0098f (patch) | |
tree | f81424793b23fb9becaa87a0bd6726d196dfd470 /gnu | |
parent | 263205deada6367e0393ad23702afb12d9f23b68 (diff) | |
download | guix-24b883916357cc15a10e650381e47e20fab0098f.tar guix-24b883916357cc15a10e650381e47e20fab0098f.tar.gz |
gnu: Add http-kit.
* gnu/packages/clojure.scm (http-kit): New variable.
Change-Id: Idb920cdab9076615a98e0be716c56b3d65c213a3
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/clojure.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index 4000c075ad..09674f541e 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2019 Jesse Gibbons <jgibbons2357+guix@gmail.com> ;;; Copyright © 2020 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2024 Roman Scherer <roman@burningswell.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -995,3 +996,30 @@ is first loaded.") provided by the Clojure Core reader and more. It adds metadata such as column and line numbers not only to lists, but also to symbols, vectors and maps.") (license license:epl1.0))) + +(define-public http-kit + (package + (name "http-kit") + (version "2.8.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/http-kit/http-kit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1361bpb4sn3dbp215s7gf1bcrb45lgx3lk6lix7bndw9lahr5ank")))) + (build-system clojure-build-system) + (arguments + '(#:java-source-dirs '("src/java") + #:source-dirs '("src") + #:doc-dirs '() + #:tests? #f)) ;XXX: too many unpackaged dependencies + (synopsis + "High-performance, event-driven HTTP client and server for Clojure") + (description "This package provides a minimalist, event-driven, +high-performance Clojure HTTP client and server library with WebSocket and +asynchronous support.") + (home-page "https://github.com/http-kit/http-kit") + (license license:asl2.0))) |