From be42f116d7119a9c935182b6674e6b52d3bb7265 Mon Sep 17 00:00:00 2001 From: Fabien Freling Date: Sun, 16 Jan 2022 20:16:47 +0100 Subject: [PATCH] add nix shell --- justfile | 3 --- shell.nix | 9 +++++++++ 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 shell.nix diff --git a/justfile b/justfile index 2ad0918..a6c5652 100644 --- a/justfile +++ b/justfile @@ -1,5 +1,2 @@ assets: tup assets - -install-deps: - sudo apt install fuse3 librsvg2-bin tup diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..6342928 --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + just + librsvg + tup + ]; +}