Remove strace from isolate stage

This commit is contained in:
Rodrigo Arias Mallo 2020-10-09 19:50:28 +02:00
parent 1b703bd431
commit 27bc977590

View File

@ -2,7 +2,6 @@
stdenv stdenv
, nixtools , nixtools
, busybox , busybox
, strace
, garlicTools , garlicTools
}: }:
@ -18,10 +17,6 @@ stdenv.mkDerivation {
name = "isolate"; name = "isolate";
preferLocalBuild = true; preferLocalBuild = true;
phases = [ "unpackPhase" "installPhase" ]; phases = [ "unpackPhase" "installPhase" ];
buildInputs = [
#nixtools
#strace
];
src = ./.; src = ./.;
dontPatchShebangs = true; dontPatchShebangs = true;
programPath = "/bin/stage1"; programPath = "/bin/stage1";