reproduce

This commit is contained in:
Kiara Grouwstra 2025-05-31 20:53:54 +02:00
parent 124473fc78
commit 33f2eaaeff
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU
2 changed files with 15 additions and 1 deletions

View file

@ -3,5 +3,7 @@
## usage ## usage
```sh ```sh
nix-shell -p pandoc mermaid-filter --command 'pandoc fediversity.md -o fediversity.html -F mermaid-filter' nix-shell
pandoc fediversity.md -o fediversity.html
pandoc fediversity.html -o fediversity.pdf
``` ```

12
shell.nix Normal file
View file

@ -0,0 +1,12 @@
{
pkgs ? import <nixpkgs> { },
}:
{
shell = pkgs.mkShellNoCC {
packages = with pkgs; [
pandoc
texliveMedium
librsvg
];
};
}