Skip to content
Snippets Groups Projects
tasty-hedgehog.nix 774 B
Newer Older
Daniel Firth's avatar
Daniel Firth committed
{ mkDerivation
, base
, fetchgit
, hedgehog
, lib
, tagged
, tasty
, tasty-expected-failure
}:
mkDerivation {
  pname = "tasty-hedgehog";
  version = "1.2.0.0";
  src = fetchgit {
    url = "https://github.com/locallycompact/tasty-hedgehog";
    sha256 = "1ql4wsah4zz2dizakgh3lfgbbq9c3c6nmypcp6fl3i96pbdj2bh5";
    rev = "4a3477578ed21aa82e5b74f387d08e5d750635d6";
    fetchSubmodules = true;
  };
  libraryHaskellDepends = [ base hedgehog tagged tasty ];
  testHaskellDepends = [
Daniel Firth's avatar
Daniel Firth committed
    base
    hedgehog
    tasty
    tasty-expected-failure
  ];
  doHaddock = false;
  jailbreak = true;
  doCheck = false;
  hyperlinkSource = false;
  homepage = "https://github.com/qfpl/tasty-hedgehog";
  description = "Integration for tasty and hedgehog";
  license = lib.licenses.bsd3;
Daniel Firth's avatar
Daniel Firth committed
}