diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-11-26 17:08:12 +0100 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-12-10 14:34:50 +0100 |
commit | 1777e1f2cb37dffe2c99b87074beed49fb36cbf7 (patch) | |
tree | f04934b2c6d5b9f2ced061d9729adc1fe023450f /gnu | |
parent | 74d9f72e02bb3d94960f8a4ba9563313e74094f0 (diff) | |
download | guix-1777e1f2cb37dffe2c99b87074beed49fb36cbf7.tar guix-1777e1f2cb37dffe2c99b87074beed49fb36cbf7.tar.gz |
gnu: Add ghc-th-lift.
* gnu/packages/haskell.scm (ghc-th-lift): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/haskell.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index f84a089899..e49b0c50b9 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -5214,6 +5214,27 @@ asynchronous exceptions.") "This deprecated library provides an implementation of packed strings.") (license bsd-3))) +(define-public ghc-th-lift + (package + (name "ghc-th-lift") + (version "0.7.5") + (source (origin + (method url-fetch) + (uri (string-append "http://hackage.haskell.org/package/" + "th-lift/th-lift-" version ".tar.gz")) + (sha256 + (base32 + "13xdkk1chdghf059sfx8d3d8r0mj1dbzdi5kf2zf0mjmz3qq7m7k")))) + (build-system haskell-build-system) + (propagated-inputs + `(("ghc-packedstring" ,ghc-packedstring))) + (home-page "http://github.com/mboes/th-lift") + (synopsis "Derive Template Haskell's Lift class for datatypes") + (description + "This is a Haskell library to derive Template Haskell's Lift class for +datatypes.") + (license bsd-3))) + (define-public idris (package (name "idris") |