linuxdoc-tools: replace texlive.combined.scheme-medium with texliveMedium

This commit is contained in:
Vincenzo Mantova 2023-11-04 20:02:27 +00:00
parent 4d77ab5cb5
commit 7a945b3874

View file

@ -1,5 +1,5 @@
{ stdenv, lib, makeWrapper, fetchFromGitLab, perl, flex { stdenv, lib, makeWrapper, fetchFromGitLab, perl, flex
, gnused, coreutils, which, opensp, groff, texlive, texinfo, withLatex ? false , gnused, coreutils, which, opensp, groff, texliveMedium, texinfo, withLatex ? false
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ flex which makeWrapper ]; nativeBuildInputs = [ flex which makeWrapper ];
buildInputs = [ opensp groff texinfo perl gnused coreutils ] buildInputs = [ opensp groff texinfo perl gnused coreutils ]
++ lib.optionals withLatex [ texlive.combined.scheme-medium ]; ++ lib.optionals withLatex [ texliveMedium ];
meta = with lib; { meta = with lib; {
description = "Toolset for processing LinuxDoc DTD SGML files"; description = "Toolset for processing LinuxDoc DTD SGML files";