add nix shell

master
Fabien Freling 2022-01-12 16:36:11 +01:00
parent cd620d648e
commit cb36227bd4
1 changed files with 10 additions and 0 deletions

10
shell.nix Normal file
View File

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