X-Git-Url: http://rtime.felk.cvut.cz/gitweb/novaboot.git/blobdiff_plain/bcda5370850fea911e2d64d1fbcfaed4938f4a40..44169889fee468bf9f248f65bcc766e809f4bea4:/shell.nix diff --git a/shell.nix b/shell.nix index a3ee325..e1641fd 100644 --- a/shell.nix +++ b/shell.nix @@ -1,6 +1,14 @@ { pkgs ? import {} }: with pkgs; mkShell { - inputsFrom = [ (import ./default.nix { inherit pkgs; }).novaboot ]; - buildInputs = [ (perl.withPackages (p: [ p.PodParser ])) ]; + inputsFrom = [ + (import ./default.nix { + inherit pkgs; + otherPerlPackages = [ perl.pkgs.PodParser ]; + }).novaboot + ]; + buildInputs = with pkgs; [ + syslinux + cdrkit + ]; }