nix-direnv/shell.nix
2021-12-06 15:19:49 +11:00

10 lines
123 B
Nix

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
nativeBuildInputs = [
python3
shellcheck
direnv
];
}