From cb36227bd49d50b3628b0307a4f0114dd9dabc3c Mon Sep 17 00:00:00 2001 From: Fabien Freling Date: Wed, 12 Jan 2022 16:36:11 +0100 Subject: [PATCH] add nix shell --- shell.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..d95466a --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + imagemagick + just + pandoc + tup + ]; +}