mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add ghc-bower-json.
* gnu/packages/haskell-web.scm (ghc-bower-json): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
42e7128673
commit
03d4ea83bf
1 changed files with 31 additions and 0 deletions
|
@ -1840,3 +1840,34 @@ (define-public ghc-language-javascript
|
|||
"Parses Javascript into an Abstract Syntax Tree (AST). Initially intended
|
||||
as frontend to hjsmin.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public ghc-bower-json
|
||||
(package
|
||||
(name "ghc-bower-json")
|
||||
(version "1.0.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://hackage/package/bower-json/bower-json-"
|
||||
version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0wvygg3rdbxzrmr61a9w6ddv9pfric85ih8hnxyk0ydzn7i59abs"))))
|
||||
(build-system haskell-build-system)
|
||||
(inputs
|
||||
`(("ghc-aeson" ,ghc-aeson)
|
||||
("ghc-aeson-better-errors" ,ghc-aeson-better-errors)
|
||||
("ghc-scientific" ,ghc-scientific)
|
||||
("ghc-transformers" ,ghc-transformers)
|
||||
("ghc-unordered-containers" ,ghc-unordered-containers)))
|
||||
(native-inputs
|
||||
`(("ghc-tasty" ,ghc-tasty)
|
||||
("ghc-tasty-hunit" ,ghc-tasty-hunit)))
|
||||
(home-page "https://github.com/hdgarrood/bower-json")
|
||||
(synopsis "Read bower.json from Haskell")
|
||||
(description
|
||||
"This package provides a data type and ToJSON/FromJSON instances for
|
||||
Bower's package manifest file, bower.json.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue