gnu: ghc-language-c: Fix up.
* gnu/packages/haskell.scm (ghc-language-c): Fix up indentation and description.
This commit is contained in:
parent
3b7ccbe94c
commit
de793e9a5a
|
@ -8131,29 +8131,27 @@ dependency.")
|
||||||
|
|
||||||
(define-public ghc-language-c
|
(define-public ghc-language-c
|
||||||
(package
|
(package
|
||||||
(name "ghc-language-c")
|
(name "ghc-language-c")
|
||||||
(version "0.5.0")
|
(version "0.5.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append "https://hackage.haskell.org/package/"
|
||||||
"https://hackage.haskell.org/package/language-c/language-c-"
|
"language-c/language-c-" version ".tar.gz"))
|
||||||
version
|
|
||||||
".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"08i2bl7jmmymn2sldzlbz6ig7lx3wfwhlpadzibs3fx72z08pmc6"))))
|
"08i2bl7jmmymn2sldzlbz6ig7lx3wfwhlpadzibs3fx72z08pmc6"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(inputs `(("ghc-syb" ,ghc-syb)))
|
(inputs `(("ghc-syb" ,ghc-syb)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ghc-happy" ,ghc-happy)
|
`(("ghc-happy" ,ghc-happy)
|
||||||
("ghc-alex" ,ghc-alex)))
|
("ghc-alex" ,ghc-alex)))
|
||||||
(home-page "http://visq.github.io/language-c/")
|
(home-page "http://visq.github.io/language-c/")
|
||||||
(synopsis "Analysis and generation of C code")
|
(synopsis "Analysis and generation of C code")
|
||||||
(description
|
(description
|
||||||
"Language C is a haskell library for the analysis and generation of C code.
|
"Language C is a Haskell library for the analysis and generation of C code.
|
||||||
It features a complete, well tested parser and pretty printer for all of C99
|
It features a complete, well-tested parser and pretty printer for all of C99
|
||||||
and a large set of GNU extensions.")
|
and a large set of GNU extensions.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
;;; haskell.scm ends here
|
;;; haskell.scm ends here
|
||||||
|
|
Loading…
Reference in New Issue