mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add http-kit.
* gnu/packages/clojure.scm (http-kit): New variable. Change-Id: Idb920cdab9076615a98e0be716c56b3d65c213a3
This commit is contained in:
parent
263205dead
commit
24b8839163
1 changed files with 28 additions and 0 deletions
|
@ -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 @@ (define-public clojure-tools-reader
|
|||
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)))
|
||||
|
|
Loading…
Reference in a new issue