Commit 818d9f0b authored by Vincenzo Mantova's avatar Vincenzo Mantova
Browse files

rocmPackages.rocdbgapi: replace texlive.combine with texliveSmall.withPackages

parent ffb91229
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -8,15 +8,14 @@
, rocm-comgr
, rocm-runtime
, hwdata
, texlive
, texliveSmall
, doxygen
, graphviz
, buildDocs ? true
}:

let
  latex = lib.optionalAttrs buildDocs texlive.combine {
    inherit (texlive) scheme-small
  latex = lib.optionalAttrs buildDocs (texliveSmall.withPackages (ps: with ps; [
    changepage
    latexmk
    varwidth
@@ -34,8 +33,8 @@ let
    etoc
    helvetic
    wasy
    courier;
  };
    courier
  ]));
in stdenv.mkDerivation (finalAttrs: {
  pname = "rocdbgapi";
  version = "5.7.1";