mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add ghc-diff.
* gnu/packages/haskell.scm (ghc-diff): Add variable.
This commit is contained in:
parent
a54d11b58f
commit
05245dc9ff
1 changed files with 19 additions and 0 deletions
|
@ -5057,6 +5057,25 @@ (define-public ghc-regex-pcre-builtin
|
||||||
@url{http://www.pcre.org}.")
|
@url{http://www.pcre.org}.")
|
||||||
(license bsd-3)))
|
(license bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-diff
|
||||||
|
(package
|
||||||
|
(name "ghc-diff")
|
||||||
|
(version "0.3.2")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://hackage.haskell.org/package/"
|
||||||
|
"Diff/Diff-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"13iqqmpadcm7fvqwbfrz94w030rvjh66w2bdls1253128ac2n0vz"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(home-page "http://hub.darcs.net/sterlingclover/Diff")
|
||||||
|
(synopsis "O(ND) diff algorithm in Haskell")
|
||||||
|
(description
|
||||||
|
"This package provides an implementation of the standard diff algorithm,
|
||||||
|
and utilities for pretty printing.")
|
||||||
|
(license bsd-3)))
|
||||||
|
|
||||||
(define-public idris
|
(define-public idris
|
||||||
(package
|
(package
|
||||||
(name "idris")
|
(name "idris")
|
||||||
|
|
Loading…
Reference in a new issue