Skip to content
Snippets Groups Projects
plutus-ledger-api.nix 1.46 KiB
Newer Older
Daniel Firth's avatar
Daniel Firth committed
{ mkDerivation, PyF, async, barbies, base, base16-bytestring
, base64-bytestring, bytestring, cborg, containers, deepseq, extra
Daniel Firth's avatar
Daniel Firth committed
, fetchzip, filepath, flat, hedgehog, lens, lib, mtl, nothunks
Daniel Firth's avatar
Daniel Firth committed
, plutus-core, plutus-tx, plutus-tx-plugin, prettyprinter
, serialise, tagged, tasty, tasty-hedgehog, tasty-hunit
, tasty-quickcheck, text
Max Tomago's avatar
Max Tomago committed
}:
mkDerivation {
  pname = "plutus-ledger-api";
  version = "1.15.0.1";
Daniel Firth's avatar
Daniel Firth committed
  src = fetchzip {
    url = "https://chap.intersectmbo.org/package/plutus-ledger-api-1.15.0.1.tar.gz";
    sha256 = "1bv976hpbv4k83drsrwh359vicc398hadaayxbljqh9ayzbab3lx";
Max Tomago's avatar
Max Tomago committed
  };
  isLibrary = true;
  isExecutable = true;
  enableSeparateDataOutput = false;
Max Tomago's avatar
Max Tomago committed
  libraryHaskellDepends = [
Daniel Firth's avatar
Daniel Firth committed
    barbies base base16-bytestring base64-bytestring bytestring cborg
    containers deepseq flat lens mtl nothunks plutus-core plutus-tx
    prettyprinter PyF serialise tagged text
Max Tomago's avatar
Max Tomago committed
  ];
  executableHaskellDepends = [
    async base extra filepath mtl plutus-core serialise tasty
Max Tomago's avatar
Max Tomago committed
    tasty-hunit
  ];
  testHaskellDepends = [
    base bytestring cborg containers extra hedgehog mtl nothunks
Daniel Firth's avatar
Daniel Firth committed
    plutus-core plutus-tx plutus-tx-plugin prettyprinter tasty
    tasty-hedgehog tasty-hunit tasty-quickcheck
Daniel Firth's avatar
Daniel Firth committed
  enableLibraryProfiling = true;
  enableExecutableProfiling = true;
Max Tomago's avatar
Max Tomago committed
  doHaddock = false;
  jailbreak = true;
  doCheck = false;
  doBenchmark = false;
Max Tomago's avatar
Max Tomago committed
  hyperlinkSource = false;
  description = "Interface to the Plutus ledger for the Cardano ledger";
  license = lib.licenses.asl20;
  broken = false;