Skip to content
Snippets Groups Projects
plutus-ledger-api.nix 1.44 KiB
Newer Older
Daniel Firth's avatar
Daniel Firth committed
{ mkDerivation, PyF, async, 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
, plutus-core, plutus-tx, 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.11.0.0";
Daniel Firth's avatar
Daniel Firth committed
  src = fetchzip {
    url = "https://input-output-hk.github.io/cardano-haskell-packages/package/plutus-ledger-api-1.11.0.0.tar.gz";
    sha256 = "1lr4bnbh6iw6nsja2b9742ncykabkz8c6kvfdj645h5lm94mwv74";
Max Tomago's avatar
Max Tomago committed
  };
  isLibrary = true;
  isExecutable = true;
  enableSeparateDataOutput = false;
Max Tomago's avatar
Max Tomago committed
  libraryHaskellDepends = [
    base base16-bytestring base64-bytestring bytestring cborg
    containers deepseq extra 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
    plutus-core plutus-tx tasty tasty-hedgehog tasty-hunit
    tasty-quickcheck text
  enableLibraryProfiling = false;
  enableExecutableProfiling = false;
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;