Skip to content
Snippets Groups Projects
Commit 71010165 authored by Max Tomago's avatar Max Tomago
Browse files

plutus-preprocessor: init at 3aa1fd8469424778454644f0d371988fb4490b4a from github:milloni

parent cfce2450
No related merge requests found
......@@ -190,6 +190,7 @@ in [ callHackage "PyF" "0.11.0.0"
"https://github.com/milloni/plutus"
(Some "81cd1ada745c12af2c2c28afce1f6b6b28b38fdd")
(Some "plutus-ledger-api")
, callCardanoLedger "plutus-preprocessor" "libs/plutus-preprocessor"
, callCabal2nix
"plutus-tx"
"https://github.com/milloni/plutus"
......
......@@ -105,6 +105,8 @@ final: prev: with pkgs.haskell.lib; {
plutus-ledger-api = prev.callPackage (./pkgs/plutus-ledger-api.nix) { };
plutus-preprocessor = prev.callPackage (./pkgs/plutus-preprocessor.nix) { };
plutus-tx = prev.callPackage (./pkgs/plutus-tx.nix) { };
prettyprinter-configurable = prev.callPackage (./pkgs/prettyprinter-configurable.nix) { };
......
{ mkDerivation, base, cardano-ledger-alonzo, fetchgit, lib }:
mkDerivation {
pname = "plutus-preprocessor";
version = "0.1.0.0";
src = fetchgit {
url = "https://github.com/milloni/cardano-ledger";
sha256 = "08nj6hcqj5apvb17n1irc8j7rzf10bcdh5gh1mkmhwbyw6h2d4ab";
rev = "3aa1fd8469424778454644f0d371988fb4490b4a";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/libs/plutus-preprocessor/; echo source root reset to $sourceRoot";
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = false;
executableHaskellDepends = [ base cardano-ledger-alonzo ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "A preproceesor for creating plutus scripts as bytestrings and equivalents";
license = lib.licenses.asl20;
mainProgram = "plutus-debug";
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment