From 27bc9775902ceed945720851977be8b5e89b3266 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Fri, 9 Oct 2020 19:50:28 +0200 Subject: [PATCH] Remove strace from isolate stage --- garlic/stages/isolate/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/garlic/stages/isolate/default.nix b/garlic/stages/isolate/default.nix index f9e87ca..a373db6 100644 --- a/garlic/stages/isolate/default.nix +++ b/garlic/stages/isolate/default.nix @@ -2,7 +2,6 @@ stdenv , nixtools , busybox -, strace , garlicTools }: @@ -18,10 +17,6 @@ stdenv.mkDerivation { name = "isolate"; preferLocalBuild = true; phases = [ "unpackPhase" "installPhase" ]; - buildInputs = [ - #nixtools - #strace - ]; src = ./.; dontPatchShebangs = true; programPath = "/bin/stage1";