mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add ghc-yaml-for-pandoc-1.
* gnu/packages/haskell.scm (ghc-yaml-for-pandoc-1): New variable.
This commit is contained in:
parent
6c05527851
commit
8e3149eeb2
1 changed files with 8 additions and 1 deletions
|
@ -63,7 +63,8 @@ (define-module (gnu packages haskell)
|
|||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (ice-9 regex))
|
||||
#:use-module (ice-9 regex)
|
||||
#:use-module ((srfi srfi-1) #:select (alist-delete)))
|
||||
|
||||
(define-public cl-yale-haskell
|
||||
(let ((commit "85f94c72a16c5f70301dd8db04cde9de2d7dd270")
|
||||
|
@ -5599,6 +5600,12 @@ (define-public ghc-yaml
|
|||
"This package provides a library to parse and render YAML documents.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public ghc-yaml-for-pandoc-1
|
||||
(package (inherit ghc-yaml)
|
||||
(inputs
|
||||
`(("ghc-aeson" ,ghc-aeson-for-pandoc-1)
|
||||
,@(alist-delete "ghc-aeson" (package-inputs ghc-yaml))))))
|
||||
|
||||
(define-public ghc-filemanip
|
||||
(package
|
||||
(name "ghc-filemanip")
|
||||
|
|
Loading…
Reference in a new issue