mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add elixir-jason.
* gnu/packages/elixir-xyz.scm (elixir-jason): New variable. Change-Id: Iadd816e2b5db6d146728aacb4d6b2c66aba4304c Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
be31d3f32f
commit
4ee644f918
1 changed files with 21 additions and 0 deletions
|
@ -70,6 +70,27 @@ (define-public elixir-makeup
|
|||
(home-page "https://hexdocs.pm/makeup/")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public elixir-jason
|
||||
(package
|
||||
(name "elixir-jason")
|
||||
(version "1.4.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (hexpm-uri name version))
|
||||
(sha256
|
||||
(base32 "18d70i31bz11nr6vgsjn5prvhkvwqbyf3xq22ck5cnsnzp6ixc7v"))))
|
||||
(build-system mix-build-system)
|
||||
(arguments (list #:tests? #f)) ; no tests
|
||||
(synopsis "JSON parser and generator")
|
||||
(description
|
||||
"Parser and generator are written in pure Elixir and optimized for speed. They
|
||||
are at least twice as fast as other Elixir/Erlang libraries (e.g.
|
||||
Poison). The performance is comparable to jiffy, which is implemented in C as
|
||||
a NIF.")
|
||||
(home-page "https://hexdocs.pm/jason/")
|
||||
(license license:asl2.0)))
|
||||
|
||||
;;;
|
||||
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
||||
;;; of a merge conflict, place them above by existing packages with similar
|
||||
|
|
Loading…
Reference in a new issue