From d21ed48974c838e935d40d8f3f310ee6cfcab16d Mon Sep 17 00:00:00 2001 From: Tobias Pflug Date: Mon, 7 Jun 2021 15:30:51 +0200 Subject: [PATCH] shell.nix: Add back enableHaskellProfiling arg Recover `enableHaskellProfiling` shell.nix argument to get shell environments with haskell profiling enabled. --- shell.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index be9825a7ea2..ebff8c0b44c 100644 --- a/shell.nix +++ b/shell.nix @@ -1,5 +1,6 @@ { system ? builtins.currentSystem -, packages ? import ./. { inherit system; } +, enableHaskellProfiling ? false +, packages ? import ./. { inherit system enableHaskellProfiling; } }: let inherit (packages) pkgs plutus plutus-playground marlowe-playground plutus-pab marlowe-dashboard deployment docs;