Skip to content
Snippets Groups Projects
plutus-tx-plugin.nix 1.16 KiB
Newer Older
Daniel Firth's avatar
Daniel Firth committed
{ mkDerivation, PyF, array, base, bytestring, containers, either
, extra, fetchzip, flat, ghc, lens, lib, mtl, optparse-applicative
, plutus-core, plutus-tx, prettyprinter, tagged, tasty
, template-haskell, text
}:
mkDerivation {
  pname = "plutus-tx-plugin";
  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-tx-plugin-1.11.0.0.tar.gz";
    sha256 = "1dpfvgn1wlcd2fw6mmbwn8nd15a9z4qmcvvpqj7c2vi5r51gcmv7";
  };
  isLibrary = true;
  isExecutable = true;
  enableSeparateDataOutput = false;
  libraryHaskellDepends = [
    array base bytestring containers either extra flat ghc lens mtl
    plutus-core plutus-tx prettyprinter PyF template-haskell text
    base containers lens optparse-applicative prettyprinter PyF text
Daniel Firth's avatar
Daniel Firth committed
  testHaskellDepends = [ base plutus-tx tagged tasty ];
  enableLibraryProfiling = false;
  enableExecutableProfiling = false;
  doHaddock = false;
  jailbreak = true;
  doCheck = false;
  doBenchmark = false;
  hyperlinkSource = false;
  description = "The Plutus Tx compiler and GHC plugin";
  license = lib.licenses.asl20;
  broken = false;