add nix shell

main
Fabien Freling 2022-01-16 20:16:47 +01:00
parent 8abc85912c
commit be42f116d7
2 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,2 @@
assets:
tup assets
install-deps:
sudo apt install fuse3 librsvg2-bin tup

9
shell.nix Normal file
View File

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