diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2023-03-12 17:24:27 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2023-03-12 17:25:10 +0100 |
commit | ec79901a33b6463ad77dcaf4c37e538645b4d7b5 (patch) | |
tree | a13d7b07281dad726ec68906bdc38f5e362f4cbf /gnu/packages/haskell.scm | |
parent | 1eb4745b692e794cc41bc5d6a14394aac649c930 (diff) | |
download | guix-ec79901a33b6463ad77dcaf4c37e538645b4d7b5.tar.gz |
gnu: ghc-9.2: Adapt testsuite to grep 3.8.
Starting with version 3.8, grep emits warning messages when pattern contain spurious slashes: grep '\+' /dev/null grep: warning: stray \ before + GHC’s testsuite does not expect that and fails. * gnu/packages/patches/ghc-9.2-grep-warnings.patch: New file. * gnu/local.mk: Add it. * gnu/packages/haskell.scm (ghc-9.2)[native-inputs]: Add patch.
Diffstat (limited to 'gnu/packages/haskell.scm')
-rw-r--r-- | gnu/packages/haskell.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 6676a3b98b..c6d301c76c 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -1354,7 +1354,8 @@ interactive environment for the functional language Haskell.") version "/ghc-" version "-testsuite.tar.xz")) (sha256 (base32 - "19ha0hidrijawy53vm2r0sgml5zkl8126mqy7p0pyacmw3k7913l")))) + "19ha0hidrijawy53vm2r0sgml5zkl8126mqy7p0pyacmw3k7913l")) + (patches (search-patches "ghc-9.2-grep-warnings.patch")))) ,@(filter (match-lambda (("ghc-bootstrap" . _) #f) (("ghc-testsuite" . _) #f) |