diff options
author | Robert Vollmert <rob@vllmrt.net> | 2019-06-02 00:16:02 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-06-02 22:07:53 +0200 |
commit | ea35f5c599a2fe4d6ab2925b1030f64e8b21e195 (patch) | |
tree | 8e70a82fd864045ac46fd161b40157e52de2be43 /tests | |
parent | b90ae065b5a5fab4ed475bf2faa3a84476389a02 (diff) | |
download | guix-ea35f5c599a2fe4d6ab2925b1030f64e8b21e195.tar guix-ea35f5c599a2fe4d6ab2925b1030f64e8b21e195.tar.gz |
tests: Fix hackage tests.
This is a followup to 1cc12357a65e4479c2f4735e915941382ef82d94.
* tests/hackage.scm: ghc-mtl is no longer added as an input.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hackage.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/hackage.scm b/tests/hackage.scm index e5f3d6caed..269c1e1f9b 100644 --- a/tests/hackage.scm +++ b/tests/hackage.scm @@ -178,8 +178,7 @@ library ('build-system 'haskell-build-system) ('inputs ('quasiquote - (("ghc-http" ('unquote 'ghc-http)) - ("ghc-mtl" ('unquote 'ghc-mtl))))) + (("ghc-http" ('unquote 'ghc-http))))) ('home-page "http://test.org") ('synopsis (? string?)) ('description (? string?)) @@ -225,8 +224,7 @@ library ('inputs ('quasiquote (("ghc-b" ('unquote 'ghc-b)) - ("ghc-http" ('unquote 'ghc-http)) - ("ghc-mtl" ('unquote 'ghc-mtl))))) + ("ghc-http" ('unquote 'ghc-http))))) ('native-inputs ('quasiquote (("ghc-haskell-gi" ('unquote 'ghc-haskell-gi))))) |