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

+4 -4
+4 -3
pkgs/applications/editors/texmacs/default.nix
··· 2 guile_1_8, xmodmap, which, freetype, 3 libjpeg, 4 sqlite, 5 - tex ? null, 6 aspell ? null, 7 git ? null, 8 python3 ? null, ··· 23 pname = "texmacs"; 24 version = "2.1.2"; 25 common = callPackage ./common.nix { 26 - inherit tex extraFonts chineseFonts japaneseFonts koreanFonts; 27 }; 28 in 29 stdenv.mkDerivation { ··· 70 which 71 ghostscriptX 72 aspell 73 - tex 74 git 75 python3 76 ])
··· 2 guile_1_8, xmodmap, which, freetype, 3 libjpeg, 4 sqlite, 5 + texliveSmall ? null, 6 aspell ? null, 7 git ? null, 8 python3 ? null, ··· 23 pname = "texmacs"; 24 version = "2.1.2"; 25 common = callPackage ./common.nix { 26 + inherit extraFonts chineseFonts japaneseFonts koreanFonts; 27 + tex = texliveSmall; 28 }; 29 in 30 stdenv.mkDerivation { ··· 71 which 72 ghostscriptX 73 aspell 74 + texliveSmall 75 git 76 python3 77 ])
-1
pkgs/top-level/all-packages.nix
··· 13830 13831 texmacs = libsForQt5.callPackage ../applications/editors/texmacs { 13832 stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; 13833 - tex = texlive.combined.scheme-small; 13834 extraFonts = true; 13835 }; 13836
··· 13830 13831 texmacs = libsForQt5.callPackage ../applications/editors/texmacs { 13832 stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; 13833 extraFonts = true; 13834 }; 13835