initial commit
1 file changed, 7 insertions(+), 0 deletions(-)
changed files
A shell.nix
@@ -0,0 +1,7 @@ +{ pkgs ? import <nixpkgs> { } }: + +pkgs.mkShell { + buildInputs = [ + (pkgs.callPackage ./. { }) + ]; +}