From 4e63547453eeff97b5fca097db535e12b7344c76 Mon Sep 17 00:00:00 2001 From: Max Tomago <noreply@tomagotech.com> Date: Mon, 19 Sep 2022 17:44:43 +0100 Subject: [PATCH] sydtest: init at master --- flake.nix | 4 ++++ overlay.nix | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/flake.nix b/flake.nix index 70311cc6..93ce0cbb 100644 --- a/flake.nix +++ b/flake.nix @@ -76,6 +76,10 @@ url = "github:TeofilC/servant?ref=ghc-9.4"; flake = false; }; + sydtest = { + url = "github:NorfairKing/sydtest"; + flake = false; + }; tasty = { url = "github:UnkindPartition/tasty"; flake = false; diff --git a/overlay.nix b/overlay.nix index 76a7a341..5e4bb134 100644 --- a/overlay.nix +++ b/overlay.nix @@ -367,6 +367,10 @@ final: prev: with pkgs.haskell.lib; { syb = dontCheck (prev.callHackage "syb" "0.7.2.1" { }); + sydtest = dontCheck (prev.callCabal2nix "sydtest" (inputs.sydtest + /sydtest) { }); + + sydtest-discover = prev.callCabal2nix "sydtest-discover" (inputs.sydtest + /sydtest-discover) { }; + tasty = doJailbreak (prev.callCabal2nix "tasty" (inputs.tasty + /core) { }); tasty-discover = doJailbreak (prev.callHackage "tasty-discover" "5.0.0" { }); -- GitLab