Skip to content
Snippets Groups Projects
cardano-slotting.nix 950 B
Newer Older
Daniel Firth's avatar
Daniel Firth committed
{ mkDerivation, aeson, base, cardano-binary, deepseq, fetchzip, lib
, mmorph, nothunks, quiet, serialise, tasty, tasty-quickcheck, time
}:
mkDerivation {
  pname = "cardano-slotting";
Daniel Firth's avatar
Daniel Firth committed
  version = "0.1.1.1";
  src = fetchzip {
    url = "https://input-output-hk.github.io/cardano-haskell-packages/package/cardano-slotting-0.1.1.1.tar.gz";
    sha256 = "0ylyx4xka8xm6si99dpyvwzzf5xy76kh569j3n3yci43lkd5ial6";
  isLibrary = true;
  isExecutable = false;
  enableSeparateDataOutput = false;
    aeson base cardano-binary deepseq mmorph nothunks quiet serialise
    time
  ];
  testHaskellDepends = [ base tasty tasty-quickcheck ];
Daniel Firth's avatar
Daniel Firth committed
  enableLibraryProfiling = true;
  enableExecutableProfiling = true;
  doHaddock = false;
  jailbreak = true;
  doCheck = false;
  doBenchmark = false;
  hyperlinkSource = false;
  description = "Key slotting types for cardano libraries";
  license = lib.licenses.asl20;
  broken = false;