diff --git a/nix/pkgs/haskell/materialized-darwin/.plan.nix/plutus-core.nix b/nix/pkgs/haskell/materialized-darwin/.plan.nix/plutus-core.nix index 1288ce5b1e..b93438e05e 100644 --- a/nix/pkgs/haskell/materialized-darwin/.plan.nix/plutus-core.nix +++ b/nix/pkgs/haskell/materialized-darwin/.plan.nix/plutus-core.nix @@ -86,7 +86,6 @@ (hsPkgs."serialise" or (errorHandler.buildDepError "serialise")) (hsPkgs."size-based" or (errorHandler.buildDepError "size-based")) (hsPkgs."some" or (errorHandler.buildDepError "some")) - (hsPkgs."sop-core" or (errorHandler.buildDepError "sop-core")) (hsPkgs."tasty" or (errorHandler.buildDepError "tasty")) (hsPkgs."tasty-golden" or (errorHandler.buildDepError "tasty-golden")) (hsPkgs."tasty-hedgehog" or (errorHandler.buildDepError "tasty-hedgehog")) @@ -291,7 +290,6 @@ "PlutusIR/TypeCheck" "UntypedPlutusCore" "UntypedPlutusCore/DeBruijn" - "UntypedPlutusCore/Evaluation/HOAS" "UntypedPlutusCore/Evaluation/Machine/Cek" "UntypedPlutusCore/Evaluation/Machine/Cek/Internal" "UntypedPlutusCore/Parser" @@ -335,6 +333,7 @@ "plc" = { depends = [ (hsPkgs."plutus-core" or (errorHandler.buildDepError "plutus-core")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) (hsPkgs."base" or (errorHandler.buildDepError "base")) (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) (hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq")) @@ -375,6 +374,7 @@ "pir" = { depends = [ (hsPkgs."plutus-core" or (errorHandler.buildDepError "plutus-core")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) (hsPkgs."base" or (errorHandler.buildDepError "base")) (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) (hsPkgs."flat" or (errorHandler.buildDepError "flat")) @@ -405,6 +405,7 @@ (hsPkgs."vector" or (errorHandler.buildDepError "vector")) ]; buildable = true; + modules = [ "Common" ]; hsSourceDirs = [ "executables/traceToStacks" ]; mainPath = [ "Main.hs" ]; }; @@ -513,10 +514,26 @@ "Evaluation/Golden" "Evaluation/Machines" "Transform/Simplify" + "DeBruijn/Spec" ]; hsSourceDirs = [ "untyped-plutus-core/test" ]; mainPath = [ "Spec.hs" ]; }; + "traceToStacks-test" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) + (hsPkgs."cassava" or (errorHandler.buildDepError "cassava")) + (hsPkgs."tasty" or (errorHandler.buildDepError "tasty")) + (hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."vector" or (errorHandler.buildDepError "vector")) + ]; + buildable = true; + modules = [ "Common" ]; + hsSourceDirs = [ "executables/traceToStacks" ]; + mainPath = [ "TestGetStacks.hs" ]; + }; "index-envs-test" = { depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) diff --git a/nix/pkgs/haskell/materialized-darwin/.plan.nix/plutus-ledger-api.nix b/nix/pkgs/haskell/materialized-darwin/.plan.nix/plutus-ledger-api.nix index 88ba72a7bc..cc612ad49b 100644 --- a/nix/pkgs/haskell/materialized-darwin/.plan.nix/plutus-ledger-api.nix +++ b/nix/pkgs/haskell/materialized-darwin/.plan.nix/plutus-ledger-api.nix @@ -87,16 +87,20 @@ "plutus-ledger-api-test" = { depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."mtl" or (errorHandler.buildDepError "mtl")) (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."plutus-core" or (errorHandler.buildDepError "plutus-core")) (hsPkgs."plutus-ledger-api" or (errorHandler.buildDepError "plutus-ledger-api")) (hsPkgs."hedgehog" or (errorHandler.buildDepError "hedgehog")) (hsPkgs."tasty" or (errorHandler.buildDepError "tasty")) (hsPkgs."tasty-hedgehog" or (errorHandler.buildDepError "tasty-hedgehog")) (hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit")) (hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck")) + (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) + (hsPkgs."serialise" or (errorHandler.buildDepError "serialise")) ]; buildable = true; - modules = [ "Spec/Interval" "Spec/Time" ]; + modules = [ "Spec/Interval" "Spec/Time" "Spec/Eval" ]; hsSourceDirs = [ "test" ]; mainPath = [ "Spec.hs" ]; }; diff --git a/nix/pkgs/haskell/materialized-darwin/.plan.nix/plutus-tx-plugin.nix b/nix/pkgs/haskell/materialized-darwin/.plan.nix/plutus-tx-plugin.nix index 033eda1b2b..bfacb35c20 100644 --- a/nix/pkgs/haskell/materialized-darwin/.plan.nix/plutus-tx-plugin.nix +++ b/nix/pkgs/haskell/materialized-darwin/.plan.nix/plutus-tx-plugin.nix @@ -106,6 +106,7 @@ "Plugin/Errors/Spec" "Plugin/Functions/Spec" "Plugin/Laziness/Spec" + "Plugin/NoTrace/Spec" "Plugin/Primitives/Spec" "Plugin/Profiling/Spec" "Plugin/Typeclasses/Spec" diff --git a/nix/pkgs/haskell/materialized-linux/.plan.nix/plutus-core.nix b/nix/pkgs/haskell/materialized-linux/.plan.nix/plutus-core.nix index 1288ce5b1e..b93438e05e 100644 --- a/nix/pkgs/haskell/materialized-linux/.plan.nix/plutus-core.nix +++ b/nix/pkgs/haskell/materialized-linux/.plan.nix/plutus-core.nix @@ -86,7 +86,6 @@ (hsPkgs."serialise" or (errorHandler.buildDepError "serialise")) (hsPkgs."size-based" or (errorHandler.buildDepError "size-based")) (hsPkgs."some" or (errorHandler.buildDepError "some")) - (hsPkgs."sop-core" or (errorHandler.buildDepError "sop-core")) (hsPkgs."tasty" or (errorHandler.buildDepError "tasty")) (hsPkgs."tasty-golden" or (errorHandler.buildDepError "tasty-golden")) (hsPkgs."tasty-hedgehog" or (errorHandler.buildDepError "tasty-hedgehog")) @@ -291,7 +290,6 @@ "PlutusIR/TypeCheck" "UntypedPlutusCore" "UntypedPlutusCore/DeBruijn" - "UntypedPlutusCore/Evaluation/HOAS" "UntypedPlutusCore/Evaluation/Machine/Cek" "UntypedPlutusCore/Evaluation/Machine/Cek/Internal" "UntypedPlutusCore/Parser" @@ -335,6 +333,7 @@ "plc" = { depends = [ (hsPkgs."plutus-core" or (errorHandler.buildDepError "plutus-core")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) (hsPkgs."base" or (errorHandler.buildDepError "base")) (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) (hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq")) @@ -375,6 +374,7 @@ "pir" = { depends = [ (hsPkgs."plutus-core" or (errorHandler.buildDepError "plutus-core")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) (hsPkgs."base" or (errorHandler.buildDepError "base")) (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) (hsPkgs."flat" or (errorHandler.buildDepError "flat")) @@ -405,6 +405,7 @@ (hsPkgs."vector" or (errorHandler.buildDepError "vector")) ]; buildable = true; + modules = [ "Common" ]; hsSourceDirs = [ "executables/traceToStacks" ]; mainPath = [ "Main.hs" ]; }; @@ -513,10 +514,26 @@ "Evaluation/Golden" "Evaluation/Machines" "Transform/Simplify" + "DeBruijn/Spec" ]; hsSourceDirs = [ "untyped-plutus-core/test" ]; mainPath = [ "Spec.hs" ]; }; + "traceToStacks-test" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) + (hsPkgs."cassava" or (errorHandler.buildDepError "cassava")) + (hsPkgs."tasty" or (errorHandler.buildDepError "tasty")) + (hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."vector" or (errorHandler.buildDepError "vector")) + ]; + buildable = true; + modules = [ "Common" ]; + hsSourceDirs = [ "executables/traceToStacks" ]; + mainPath = [ "TestGetStacks.hs" ]; + }; "index-envs-test" = { depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) diff --git a/nix/pkgs/haskell/materialized-linux/.plan.nix/plutus-ledger-api.nix b/nix/pkgs/haskell/materialized-linux/.plan.nix/plutus-ledger-api.nix index 88ba72a7bc..cc612ad49b 100644 --- a/nix/pkgs/haskell/materialized-linux/.plan.nix/plutus-ledger-api.nix +++ b/nix/pkgs/haskell/materialized-linux/.plan.nix/plutus-ledger-api.nix @@ -87,16 +87,20 @@ "plutus-ledger-api-test" = { depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."mtl" or (errorHandler.buildDepError "mtl")) (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."plutus-core" or (errorHandler.buildDepError "plutus-core")) (hsPkgs."plutus-ledger-api" or (errorHandler.buildDepError "plutus-ledger-api")) (hsPkgs."hedgehog" or (errorHandler.buildDepError "hedgehog")) (hsPkgs."tasty" or (errorHandler.buildDepError "tasty")) (hsPkgs."tasty-hedgehog" or (errorHandler.buildDepError "tasty-hedgehog")) (hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit")) (hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck")) + (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) + (hsPkgs."serialise" or (errorHandler.buildDepError "serialise")) ]; buildable = true; - modules = [ "Spec/Interval" "Spec/Time" ]; + modules = [ "Spec/Interval" "Spec/Time" "Spec/Eval" ]; hsSourceDirs = [ "test" ]; mainPath = [ "Spec.hs" ]; }; diff --git a/nix/pkgs/haskell/materialized-linux/.plan.nix/plutus-tx-plugin.nix b/nix/pkgs/haskell/materialized-linux/.plan.nix/plutus-tx-plugin.nix index 033eda1b2b..bfacb35c20 100644 --- a/nix/pkgs/haskell/materialized-linux/.plan.nix/plutus-tx-plugin.nix +++ b/nix/pkgs/haskell/materialized-linux/.plan.nix/plutus-tx-plugin.nix @@ -106,6 +106,7 @@ "Plugin/Errors/Spec" "Plugin/Functions/Spec" "Plugin/Laziness/Spec" + "Plugin/NoTrace/Spec" "Plugin/Primitives/Spec" "Plugin/Profiling/Spec" "Plugin/Typeclasses/Spec" diff --git a/nix/pkgs/haskell/materialized-windows/.plan.nix/plutus-core.nix b/nix/pkgs/haskell/materialized-windows/.plan.nix/plutus-core.nix index 1288ce5b1e..b93438e05e 100644 --- a/nix/pkgs/haskell/materialized-windows/.plan.nix/plutus-core.nix +++ b/nix/pkgs/haskell/materialized-windows/.plan.nix/plutus-core.nix @@ -86,7 +86,6 @@ (hsPkgs."serialise" or (errorHandler.buildDepError "serialise")) (hsPkgs."size-based" or (errorHandler.buildDepError "size-based")) (hsPkgs."some" or (errorHandler.buildDepError "some")) - (hsPkgs."sop-core" or (errorHandler.buildDepError "sop-core")) (hsPkgs."tasty" or (errorHandler.buildDepError "tasty")) (hsPkgs."tasty-golden" or (errorHandler.buildDepError "tasty-golden")) (hsPkgs."tasty-hedgehog" or (errorHandler.buildDepError "tasty-hedgehog")) @@ -291,7 +290,6 @@ "PlutusIR/TypeCheck" "UntypedPlutusCore" "UntypedPlutusCore/DeBruijn" - "UntypedPlutusCore/Evaluation/HOAS" "UntypedPlutusCore/Evaluation/Machine/Cek" "UntypedPlutusCore/Evaluation/Machine/Cek/Internal" "UntypedPlutusCore/Parser" @@ -335,6 +333,7 @@ "plc" = { depends = [ (hsPkgs."plutus-core" or (errorHandler.buildDepError "plutus-core")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) (hsPkgs."base" or (errorHandler.buildDepError "base")) (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) (hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq")) @@ -375,6 +374,7 @@ "pir" = { depends = [ (hsPkgs."plutus-core" or (errorHandler.buildDepError "plutus-core")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) (hsPkgs."base" or (errorHandler.buildDepError "base")) (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) (hsPkgs."flat" or (errorHandler.buildDepError "flat")) @@ -405,6 +405,7 @@ (hsPkgs."vector" or (errorHandler.buildDepError "vector")) ]; buildable = true; + modules = [ "Common" ]; hsSourceDirs = [ "executables/traceToStacks" ]; mainPath = [ "Main.hs" ]; }; @@ -513,10 +514,26 @@ "Evaluation/Golden" "Evaluation/Machines" "Transform/Simplify" + "DeBruijn/Spec" ]; hsSourceDirs = [ "untyped-plutus-core/test" ]; mainPath = [ "Spec.hs" ]; }; + "traceToStacks-test" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) + (hsPkgs."cassava" or (errorHandler.buildDepError "cassava")) + (hsPkgs."tasty" or (errorHandler.buildDepError "tasty")) + (hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."vector" or (errorHandler.buildDepError "vector")) + ]; + buildable = true; + modules = [ "Common" ]; + hsSourceDirs = [ "executables/traceToStacks" ]; + mainPath = [ "TestGetStacks.hs" ]; + }; "index-envs-test" = { depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) diff --git a/nix/pkgs/haskell/materialized-windows/.plan.nix/plutus-ledger-api.nix b/nix/pkgs/haskell/materialized-windows/.plan.nix/plutus-ledger-api.nix index 88ba72a7bc..cc612ad49b 100644 --- a/nix/pkgs/haskell/materialized-windows/.plan.nix/plutus-ledger-api.nix +++ b/nix/pkgs/haskell/materialized-windows/.plan.nix/plutus-ledger-api.nix @@ -87,16 +87,20 @@ "plutus-ledger-api-test" = { depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."mtl" or (errorHandler.buildDepError "mtl")) (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."plutus-core" or (errorHandler.buildDepError "plutus-core")) (hsPkgs."plutus-ledger-api" or (errorHandler.buildDepError "plutus-ledger-api")) (hsPkgs."hedgehog" or (errorHandler.buildDepError "hedgehog")) (hsPkgs."tasty" or (errorHandler.buildDepError "tasty")) (hsPkgs."tasty-hedgehog" or (errorHandler.buildDepError "tasty-hedgehog")) (hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit")) (hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck")) + (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) + (hsPkgs."serialise" or (errorHandler.buildDepError "serialise")) ]; buildable = true; - modules = [ "Spec/Interval" "Spec/Time" ]; + modules = [ "Spec/Interval" "Spec/Time" "Spec/Eval" ]; hsSourceDirs = [ "test" ]; mainPath = [ "Spec.hs" ]; }; diff --git a/nix/pkgs/haskell/materialized-windows/.plan.nix/plutus-tx-plugin.nix b/nix/pkgs/haskell/materialized-windows/.plan.nix/plutus-tx-plugin.nix index 033eda1b2b..bfacb35c20 100644 --- a/nix/pkgs/haskell/materialized-windows/.plan.nix/plutus-tx-plugin.nix +++ b/nix/pkgs/haskell/materialized-windows/.plan.nix/plutus-tx-plugin.nix @@ -106,6 +106,7 @@ "Plugin/Errors/Spec" "Plugin/Functions/Spec" "Plugin/Laziness/Spec" + "Plugin/NoTrace/Spec" "Plugin/Primitives/Spec" "Plugin/Profiling/Spec" "Plugin/Typeclasses/Spec"