website/shell.nix

13 lines
152 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
2024-11-19 14:58:12 +01:00
nushell
2022-01-12 16:36:11 +01:00
pandoc
tup
];
}