Skip to content
Snippets Groups Projects
FailT.nix 827 B
Newer Older
='s avatar
= committed
{ mkDerivation, QuickCheck, base, doctest, exceptions, hspec, lib
, mtl, quickcheck-classes, text
}:
mkDerivation {
  pname = "FailT";
  version = "0.1.2.0";
  sha256 = "f1e3d5714df7e7e134545239bd78927bc9949a9b4760dfa061ff2b35ff0a76c3";
  isLibrary = true;
  isExecutable = false;
  enableSeparateDataOutput = false;
  libraryHaskellDepends = [ base exceptions mtl text ];
  testHaskellDepends = [
    base doctest exceptions hspec mtl QuickCheck quickcheck-classes
  ];
  enableLibraryProfiling = true;
  enableExecutableProfiling = true;
  doHaddock = true;
  jailbreak = true;
  doCheck = false;
  doBenchmark = false;
  hyperlinkSource = false;
  homepage = "https://github.com/lehins/FailT";
  description = "A 'FailT' monad transformer that plays well with 'MonadFail'";
  license = lib.licenses.bsd3;
  broken = false;
}