Skip to content
Snippets Groups Projects
tasty-hedgehog.nix 795 B
Newer Older
Daniel Firth's avatar
Daniel Firth committed
{ mkDerivation
, base
, hedgehog
, lib
, tagged
, tasty
, tasty-expected-failure
}:
mkDerivation {
  pname = "tasty-hedgehog";
Daniel Firth's avatar
Daniel Firth committed
  version = "1.4.0.0";
  sha256 = "93e4009389a7c14a37e9195ff8a96b739438543e2d408d089eebec6e715c9cbd";
  isLibrary = true;
  isExecutable = false;
  enableSeparateDataOutput = false;
  libraryHaskellDepends = [ base hedgehog tagged tasty ];
  testHaskellDepends = [
Daniel Firth's avatar
Daniel Firth committed
    base
    hedgehog
    tasty
    tasty-expected-failure
  enableLibraryProfiling = true;
  enableExecutableProfiling = true;
  doHaddock = false;
  jailbreak = true;
  doCheck = false;
  doBenchmark = false;
  hyperlinkSource = false;
  homepage = "https://github.com/qfpl/tasty-hedgehog";
  description = "Integration for tasty and hedgehog";
  license = lib.licenses.bsd3;
  broken = false;
Daniel Firth's avatar
Daniel Firth committed
}