summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2018-02-12 22:02:04 +0100
committerRicardo Wurmus <rekado@elephly.net>2018-02-13 13:37:34 +0100
commit44c233ac139d67669adc3da454adde07d74bb1c4 (patch)
treeda47f747b076f2fdd715d1a8b475bf0eb30917ef /gnu
parentb28f0ffab35079c1d5fa990d17d0ef383f11ab6d (diff)
downloadpatches-44c233ac139d67669adc3da454adde07d74bb1c4.tar
patches-44c233ac139d67669adc3da454adde07d74bb1c4.tar.gz
gnu: ghc-th-lift: Update to 0.7.8.
* gnu/packages/haskell.scm (ghc-th-lift): Update to 0.7.8. [inputs]: Remove ghc-packedstring.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/haskell.scm6
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 8395fba094..71dc2799e6 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -4941,17 +4941,15 @@ Template Haskell.")
(define-public ghc-th-lift
(package
(name "ghc-th-lift")
- (version "0.7.5")
+ (version "0.7.8")
(source (origin
(method url-fetch)
(uri (string-append "https://hackage.haskell.org/package/"
"th-lift/th-lift-" version ".tar.gz"))
(sha256
(base32
- "13xdkk1chdghf059sfx8d3d8r0mj1dbzdi5kf2zf0mjmz3qq7m7k"))))
+ "0ay10b78x3969rpqqrgzy8srkl6iby2cljbf3mm17na8x22k7y1c"))))
(build-system haskell-build-system)
- (inputs
- `(("ghc-packedstring" ,ghc-packedstring)))
(home-page "https://github.com/mboes/th-lift")
(synopsis "Derive Template Haskell's Lift class for datatypes")
(description