From d215f1ccadd06e8d4a177812ccc4b7d003cf3865 Mon Sep 17 00:00:00 2001 From: Timothy Sample Date: Thu, 31 Oct 2019 09:51:55 -0400 Subject: gnu: ghc-reflection: Update to 2.1.5. * gnu/packages/haskell-xyz.scm (ghc-reflection): Update to 2.1.5. [native-inputs]: Add 'ghc-hspec', 'ghc-quickcheck', and 'hspec-discover'. --- gnu/packages/haskell-xyz.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 685419e7e2..9b2ee0b0cc 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -8197,7 +8197,7 @@ (define-public ghc-refact (define-public ghc-reflection (package (name "ghc-reflection") - (version "2.1.4") + (version "2.1.5") (source (origin (method url-fetch) @@ -8207,9 +8207,13 @@ (define-public ghc-reflection ".tar.gz")) (sha256 (base32 - "0kf4a5ijw6jfnfibjcrpdy9vzh1n6v2pxia8dhyyqdissiwc8bzj")))) + "0xr947nj1vww5b8fwqmypxm3y3j5sxl4z8wnf834f83jzfzyjbi7")))) (build-system haskell-build-system) (inputs `(("ghc-tagged" ,ghc-tagged))) + (native-inputs + `(("ghc-hspec" ,ghc-hspec) + ("ghc-quickcheck" ,ghc-quickcheck) + ("hspec-discover" ,hspec-discover))) (home-page "https://github.com/ekmett/reflection") (synopsis "Reify arbitrary terms into types that can be reflected back into terms") -- cgit v1.2.3 79a28947ef5b90b15f261b45ccb269547afa6'>commitdiff
path: root/gnu/packages/pem.scm
AgeCommit message (Expand)Author
2021-12-13gnu: Simplify package inputs.Ludovic Courtès