add nix shell

This commit is contained in:
Fabien Freling 2022-01-16 20:16:47 +01:00
parent 8abc85912c
commit b15a792985

9
shell.nix Normal file
View file

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