Add Nix helper tools

This commit is contained in:
Loic Nageleisen 2022-09-15 16:36:01 +02:00
parent 174c971350
commit fb207d7e6c
Signed by: lloeki
GPG key ID: D05DAEE6889F94C2
2 changed files with 10 additions and 0 deletions

9
shell.nix Normal file
View file

@ -0,0 +1,9 @@
{
pkgs ? import <nixpkgs> {},
}:
pkgs.mkShell {
buildInputs = [
pkgs.shellcheck
];
}