reproduce
This commit is contained in:
parent
124473fc78
commit
33f2eaaeff
2 changed files with 15 additions and 1 deletions
|
@ -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
12
shell.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
pkgs ? import <nixpkgs> { },
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
shell = pkgs.mkShellNoCC {
|
||||||
|
packages = with pkgs; [
|
||||||
|
pandoc
|
||||||
|
texliveMedium
|
||||||
|
librsvg
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue