]> rtime.felk.cvut.cz Git - novaboot.git/blob - shell.nix
Catch errors in pre-commit hook
[novaboot.git] / shell.nix
1 { pkgs ? import <nixpkgs> {} }:
2 with pkgs;
3 mkShell {
4   # this will make all the build inputs from hello and gnutar
5   # available to the shell environment
6   buildInputs = [ (perl.withPackages (p: [ p.PodParser ])) ];
7 }