texmacs: replace texlive.combined.scheme-small with texliveSmall

This commit is contained in:
Vincenzo Mantova 2023-11-04 20:02:30 +00:00
parent 5b6a5f8943
commit cdc9dba2bc
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
guile_1_8, xmodmap, which, freetype,
libjpeg,
sqlite,
tex ? null,
texliveSmall ? null,
aspell ? null,
git ? null,
python3 ? null,
@ -23,7 +23,8 @@ let
pname = "texmacs";
version = "2.1.2";
common = callPackage ./common.nix {
inherit tex extraFonts chineseFonts japaneseFonts koreanFonts;
inherit extraFonts chineseFonts japaneseFonts koreanFonts;
tex = texliveSmall;
};
in
stdenv.mkDerivation {
@ -70,7 +71,7 @@ stdenv.mkDerivation {
which
ghostscriptX
aspell
tex
texliveSmall
git
python3
])

View File

@ -13830,7 +13830,6 @@ with pkgs;
texmacs = libsForQt5.callPackage ../applications/editors/texmacs {
stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv;
tex = texlive.combined.scheme-small;
extraFonts = true;
};