mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
devShells: +necro-man
This commit is contained in:
parent
edaf1e0fae
commit
c60be15228
2 changed files with 49 additions and 0 deletions
37
nix/devShells/necro-man.nix
Normal file
37
nix/devShells/necro-man.nix
Normal 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 {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue