website/shell.nix

11 lines
128 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
imagemagick
just
pandoc
tup
];
}