From f99f4ce6f57ab601a3fcbf331cf65cd0e7e7af9c Mon Sep 17 00:00:00 2001
From: Dom Brown <dom.brown@platonic.systems>
Date: Wed, 19 Oct 2022 13:57:22 +0100
Subject: [PATCH] sydtest: 0.12.0.1 -> 0.13.0.0

---
 manifest.dhall   |  2 +-
 pkgs/sydtest.nix | 82 +++++++++---------------------------------------
 2 files changed, 16 insertions(+), 68 deletions(-)

diff --git a/manifest.dhall b/manifest.dhall
index 55bdd58e..e94addad 100644
--- a/manifest.dhall
+++ b/manifest.dhall
@@ -336,7 +336,7 @@ in  [ callHackage "Cabal" "3.8.1.0"
     , callHackage "string-qq" "0.0.4"
     , callHackage "stylish-haskell" "0.14.2.0"
     , callHackage "syb" "0.7.2.1"
-    , callHackage "sydtest" "0.12.0.1"
+    , callHackage "sydtest" "0.13.0.0"
     , callHackage "sydtest-discover" "0.0.0.2"
     , callCabal2nix
         "tasty"
diff --git a/pkgs/sydtest.nix b/pkgs/sydtest.nix
index 3df70cbb..a63ac4ee 100644
--- a/pkgs/sydtest.nix
+++ b/pkgs/sydtest.nix
@@ -1,75 +1,23 @@
-{ mkDerivation
-, async
-, autodocodec
-, autodocodec-yaml
-, base
-, bytestring
-, containers
-, Diff
-, dlist
-, envparse
-, filepath
-, lib
-, MonadRandom
-, mtl
-, optparse-applicative
-, path
-, path-io
-, pretty-show
-, QuickCheck
-, quickcheck-io
-, random
-, random-shuffle
-, safe
-, safe-coloured-text
-, safe-coloured-text-terminfo
-, split
-, stm
-, sydtest-discover
-, text
+{ mkDerivation, async, autodocodec, autodocodec-yaml, base
+, bytestring, containers, Diff, dlist, envparse, filepath, lib
+, MonadRandom, mtl, optparse-applicative, path, path-io
+, pretty-show, QuickCheck, quickcheck-io, random, random-shuffle
+, safe, safe-coloured-text, safe-coloured-text-terminfo, split, stm
+, sydtest-discover, text
 }:
 mkDerivation {
   pname = "sydtest";
-  version = "0.12.0.1";
-  sha256 = "1c7186d0e41145aefcb6eae9727938d757e07ebd8f8287feb19a447567d8565f";
+  version = "0.13.0.0";
+  sha256 = "856583d832d8b9e52a4d0ba6290b70e984ad1663cb300464961800ea8c2f4a57";
   libraryHaskellDepends = [
-    async
-    autodocodec
-    autodocodec-yaml
-    base
-    bytestring
-    containers
-    Diff
-    dlist
-    envparse
-    filepath
-    MonadRandom
-    mtl
-    optparse-applicative
-    path
-    path-io
-    pretty-show
-    QuickCheck
-    quickcheck-io
-    random
-    random-shuffle
-    safe
-    safe-coloured-text
-    safe-coloured-text-terminfo
-    split
-    stm
-    text
+    async autodocodec autodocodec-yaml base bytestring containers Diff
+    dlist envparse filepath MonadRandom mtl optparse-applicative path
+    path-io pretty-show QuickCheck quickcheck-io random random-shuffle
+    safe safe-coloured-text safe-coloured-text-terminfo split stm text
   ];
   testHaskellDepends = [
-    base
-    bytestring
-    path
-    path-io
-    QuickCheck
-    random
-    safe-coloured-text
-    stm
-    text
+    base bytestring path path-io QuickCheck random safe-coloured-text
+    stm text
   ];
   testToolDepends = [ sydtest-discover ];
   doHaddock = false;
@@ -79,4 +27,4 @@ mkDerivation {
   homepage = "https://github.com/NorfairKing/sydtest#readme";
   description = "A modern testing framework for Haskell with good defaults and advanced testing features";
   license = "unknown";
-}
+}
\ No newline at end of file
-- 
GitLab