Add a shell.nix file

This commit is contained in:
Jez Cope 2020-10-21 13:52:51 +01:00
parent 64735a8d74
commit 4c916dfd9b
1 changed files with 5 additions and 0 deletions

5
shell.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [python37 lessc];
}