Skip to content
Snippets Groups Projects
plutus-ledger-api.nix 1.52 KiB
Newer Older
Daniel Firth's avatar
Daniel Firth committed
{ mkDerivation, PyF, QuickCheck, async, barbies, base
, base16-bytestring, base64-bytestring, bytestring, cborg
Daniel Firth's avatar
Daniel Firth committed
, containers, deepseq, extra, fetchzip, filepath, hedgehog, lens
, lib, mtl, nothunks, plutus-core, plutus-tx, plutus-tx-plugin
, prettyprinter, primitive, serialise, tagged, tasty
, tasty-hedgehog, tasty-hunit, tasty-quickcheck, text
Max Tomago's avatar
Max Tomago committed
}:
mkDerivation {
  pname = "plutus-ledger-api";
Daniel Firth's avatar
Daniel Firth committed
  version = "1.27.0.0";
Daniel Firth's avatar
Daniel Firth committed
  src = fetchzip {
Daniel Firth's avatar
Daniel Firth committed
    url = "https://chap.intersectmbo.org/package/plutus-ledger-api-1.27.0.0.tar.gz";
    sha256 = "1bidhyl2zr2a9ha2am8v27qc03k9qx3bhm6bacvsh7zdb93r8f5j";
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
Daniel Firth's avatar
Daniel Firth committed
    containers deepseq lens mtl nothunks plutus-core plutus-tx
Daniel Firth's avatar
Daniel Firth committed
    prettyprinter PyF QuickCheck serialise tagged text
Max Tomago's avatar
Max Tomago committed
  ];
  executableHaskellDepends = [
Daniel Firth's avatar
Daniel Firth committed
    async base extra filepath lens mtl plutus-core plutus-tx primitive
    serialise tasty tasty-hunit
Max Tomago's avatar
Max Tomago committed
  ];
  testHaskellDepends = [
Daniel Firth's avatar
Daniel Firth committed
    base bytestring cborg containers extra hedgehog lens mtl nothunks
    plutus-core plutus-tx plutus-tx-plugin prettyprinter serialise
    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;