devShells: +necro-man

This commit is contained in:
Primrose 2025-05-11 20:44:16 +02:00
parent edaf1e0fae
commit c60be15228
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,37 @@
let
sources = import ../sources.nix;
in
{pkgs ? import sources.pin-necro-man-nixpkgs {}}: let
shell = {
mkShell,
#
pkgs,
python310Packages,
texlive,
}:
mkShell {
name = "necro-manual";
packages = [
pkgs.emacs
python310Packages.pygments
(texlive.combine {
inherit
(texlive)
scheme-medium
#
wrapfig
capt-of
minted
upquote
todonotes
fvextra
catchfile
xstring
framed
;
})
];
};
in
pkgs.callPackage shell {}