forked from Fediversity/meta
add nix shell with needed packages
This commit is contained in:
parent
798522c747
commit
2b8507ae78
2 changed files with 15 additions and 0 deletions
14
default.nix
Normal file
14
default.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
pkgs ? import <nixpkgs> { },
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
shell = pkgs.mkShellNoCC {
|
||||||
|
packages = with pkgs; [
|
||||||
|
pandoc
|
||||||
|
texliveMedium
|
||||||
|
librsvg
|
||||||
|
mermaid-cli
|
||||||
|
plantuml
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
1
shell.nix
Normal file
1
shell.nix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
(import ./. { }).shell
|
Loading…
Add table
Reference in a new issue