diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-11-26 17:05:59 +0100 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-12-10 14:34:50 +0100 |
commit | 05245dc9ff884ef1b87f0a6f4600306d387b5e6c (patch) | |
tree | 98cc2e36a0c8970cd3542b79041d423a7663af87 | |
parent | a54d11b58fe50559e95cc22f7771239b5cdd8b00 (diff) | |
download | guix-05245dc9ff884ef1b87f0a6f4600306d387b5e6c.tar guix-05245dc9ff884ef1b87f0a6f4600306d387b5e6c.tar.gz |
gnu: Add ghc-diff.
* gnu/packages/haskell.scm (ghc-diff): Add variable.
-rw-r--r-- | gnu/packages/haskell.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index eae192433c..b7452cd7dc 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -5057,6 +5057,25 @@ providing the PCRE backend to accompany regex-base, with bundled code from @url{http://www.pcre.org}.") (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 (package (name "idris") |