website/shell.nix

12 lines
140 B
Nix
Raw Permalink Normal View History

2022-01-12 16:36:11 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
imagemagick
just
2022-01-13 14:41:39 +01:00
libavif
2022-01-12 16:36:11 +01:00
pandoc
tup
];
}