Skip to content
Snippets Groups Projects
Commit d75ce45a authored by Daniel Firth's avatar Daniel Firth
Browse files

polysemy-test: init at 0.6.0.0

parent ba9bb162
No related merge requests found
......@@ -551,6 +551,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(Some "bd944ca000c1ca69602d4723e3859af431b9d0c4")
(Some "polysemy-plugin")
, callHackage "polysemy-several" "0.1.1.0"
, callHackage "polysemy-test" "0.6.0.0"
, callHackage "polysemy-time" "0.5.1.0"
, callHackage "polysemy-vinyl" "0.1.5.0"
, callHackage "polysemy-zoo" "0.8.0.0"
......
......@@ -829,6 +829,8 @@ self: with pkgs.haskell.lib; {
polysemy-several = self.callPackage (./pkgs/polysemy-several.nix) { };
polysemy-test = self.callPackage (./pkgs/polysemy-test.nix) { };
polysemy-time = self.callPackage (./pkgs/polysemy-time.nix) { };
polysemy-vinyl = self.callPackage (./pkgs/polysemy-vinyl.nix) { };
......
{ mkDerivation
, base
, hedgehog
, incipit-core
, lib
, path
, path-io
, polysemy
, tasty
, tasty-hedgehog
, transformers
}:
mkDerivation {
pname = "polysemy-test";
version = "0.6.0.0";
sha256 = "f0f6a7c812875c9a2263c7a1a093fdc8cb653f4c5384843231cbdd4e25797d24";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base
hedgehog
incipit-core
path
path-io
polysemy
tasty
tasty-hedgehog
transformers
];
testHaskellDepends = [
base
hedgehog
incipit-core
path
polysemy
tasty
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/tek/polysemy-test#readme";
description = "Polysemy Effects for Testing";
license = "BSD-2-Clause-Patent";
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment