Add marp dev shell
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
parent
d509e167da
commit
b2803aac2d
1 changed files with 15 additions and 13 deletions
28
flake.nix
28
flake.nix
|
@ -122,23 +122,25 @@
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
devShells.${system}.default =
|
devShells.${system} = with pkgs; {
|
||||||
with pkgs;
|
default = mkShell {
|
||||||
mkShell {
|
packages = commonBuildInputs ++ [
|
||||||
packages =
|
ghostscript
|
||||||
with pkgs;
|
just
|
||||||
commonBuildInputs
|
pdfpc
|
||||||
++ [
|
texliveMedium # includes pdfjam
|
||||||
ghostscript
|
];
|
||||||
just
|
|
||||||
pdfpc
|
|
||||||
texliveMedium # includes pdfjam
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
marp = mkShell {
|
||||||
|
packages = [ marp-cli ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
packages.${system} = {
|
packages.${system} = {
|
||||||
inherit shared-assets;
|
inherit shared-assets;
|
||||||
} // talks;
|
}
|
||||||
|
// talks;
|
||||||
|
|
||||||
formatter.${system} = pkgs.nixfmt-rfc-style;
|
formatter.${system} = pkgs.nixfmt-rfc-style;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue