From: Michal Sojka Date: Sun, 24 Jan 2021 22:11:18 +0000 (+0100) Subject: nix: Allow running (at least a part of) test suite from nix-shell X-Git-Tag: 20210126a~17 X-Git-Url: http://rtime.felk.cvut.cz/gitweb/novaboot.git/commitdiff_plain/bcda5370850fea911e2d64d1fbcfaed4938f4a40?hp=8b2fd0f39cc5d20dadb6f67dbe0d9a07680c9d8f nix: Allow running (at least a part of) test suite from nix-shell --- diff --git a/shell.nix b/shell.nix index 3c23349..a3ee325 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,6 @@ { pkgs ? import {} }: with pkgs; mkShell { - # this will make all the build inputs from hello and gnutar - # available to the shell environment + inputsFrom = [ (import ./default.nix { inherit pkgs; }).novaboot ]; buildInputs = [ (perl.withPackages (p: [ p.PodParser ])) ]; }