regs-parser/shell.nix

14 lines
243 B
Nix
Raw Normal View History

2020-07-28 16:09:24 +08:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell ({
buildInputs = (with pkgs; [
poppler_utils
(
python3.withPackages (ps: with ps; [regex])
)
]);
shellHook = ''
echo ========================
cat ./README
'';
})