add nix shell

This commit is contained in:
Fabien Freling 2022-01-12 16:36:11 +01:00
parent cd620d648e
commit cb36227bd4

10
shell.nix Normal file
View file

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