update pkg

This commit is contained in:
zoey 2024-10-25 05:46:02 +00:00
parent 1826ef8f67
commit 0f36e45606
2 changed files with 84 additions and 171 deletions

View file

@ -23,7 +23,19 @@
buildInputs = [
pkgs.coreutils
pkgs.findutils
pkgs.texlive.combined.scheme-full
(texlive = with pkgs;
texlive.combine {
inherit
(texlive)
scheme-small
academicons
arydshln
fontawesome5
marvosym
moderncv
multirow
;
})
];
buildPhase = ''
export PATH="${pkgs.lib.makeBinPath buildInputs}"
@ -55,7 +67,19 @@
devShells = eachSystem (pkgs: {
default = pkgs.mkShell {
buildInputs = [
pkgs.texlive.combined.scheme-full
(texlive = with pkgs;
texlive.combine {
inherit
(texlive)
scheme-small
academicons
arydshln
fontawesome5
marvosym
moderncv
multirow
;
})
pkgs.texlab
pkgs.termpdfpy
];