X-Git-Url: http://rtime.felk.cvut.cz/gitweb/novaboot.git/blobdiff_plain/5cd063dd1620e3b7d9f045044d2b840f1f9f8848..86c90c5191a4468468ba2e3d8dccad0763751db3:/shell.nix diff --git a/shell.nix b/shell.nix index 3c23349..e1641fd 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,14 @@ { pkgs ? import {} }: with pkgs; mkShell { - # this will make all the build inputs from hello and gnutar - # available to the shell environment - buildInputs = [ (perl.withPackages (p: [ p.PodParser ])) ]; + inputsFrom = [ + (import ./default.nix { + inherit pkgs; + otherPerlPackages = [ perl.pkgs.PodParser ]; + }).novaboot + ]; + buildInputs = with pkgs; [ + syslinux + cdrkit + ]; }