Skip to content
Snippets Groups Projects
plutus-tx-plugin.nix 1.43 KiB
Newer Older
Daniel Firth's avatar
Daniel Firth committed
{ mkDerivation, PyF, array, base, bytestring, containers, deepseq
Daniel Firth's avatar
Daniel Firth committed
, either, extra, fetchzip, filepath, flat, ghc, hedgehog, lens, lib
Daniel Firth's avatar
Daniel Firth committed
, mtl, optparse-applicative, plutus-core, plutus-tx
, plutus-tx-test-util, prettyprinter, serialise, tagged, tasty
, tasty-golden, tasty-hedgehog, tasty-hunit, template-haskell, text
, these, uniplate
}:
mkDerivation {
  pname = "plutus-tx-plugin";
Daniel Firth's avatar
Daniel Firth committed
  version = "1.32.1.0";
Daniel Firth's avatar
Daniel Firth committed
  src = fetchzip {
Daniel Firth's avatar
Daniel Firth committed
    url = "https://chap.intersectmbo.org/package/plutus-tx-plugin-1.32.1.0.tar.gz";
    sha256 = "11vxwqyq5h3rpqjad02kwd3ing6nc5r37hqrjfbp7zv99yrh87lk";
  };
  isLibrary = true;
  isExecutable = true;
  enableSeparateDataOutput = false;
  libraryHaskellDepends = [
    array base bytestring containers either extra flat ghc lens mtl
Daniel Firth's avatar
Daniel Firth committed
    plutus-core plutus-tx prettyprinter template-haskell text uniplate
    base containers lens optparse-applicative prettyprinter PyF text
Daniel Firth's avatar
Daniel Firth committed
  testHaskellDepends = [
Daniel Firth's avatar
Daniel Firth committed
    base bytestring containers deepseq filepath flat hedgehog lens mtl
Daniel Firth's avatar
Daniel Firth committed
    plutus-core plutus-tx plutus-tx-test-util serialise tagged tasty
    tasty-golden tasty-hedgehog tasty-hunit template-haskell text these
Daniel Firth's avatar
Daniel Firth committed
  ];
Daniel Firth's avatar
Daniel Firth committed
  enableLibraryProfiling = true;
  enableExecutableProfiling = true;
  doHaddock = true;
  jailbreak = true;
  doCheck = false;
  doBenchmark = false;
  hyperlinkSource = false;
  description = "The Plutus Tx compiler and GHC plugin";
  license = lib.licenses.asl20;
  broken = false;
Daniel Firth's avatar
Daniel Firth committed
}