regs-parser/shell.nix

14 lines
243 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell ({
buildInputs = (with pkgs; [
poppler_utils
(
python3.withPackages (ps: with ps; [regex])
)
]);
shellHook = ''
echo ========================
cat ./README
'';
})