Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

quartoMinimal: init at 1.2.475

In order to have a Quarto with a smaller closure size

+5 -3
+3 -3
pkgs/development/libraries/quarto/default.nix
··· 44 44 --prefix QUARTO_PANDOC : ${pandoc}/bin/pandoc \ 45 45 --prefix QUARTO_ESBUILD : ${esbuild}/bin/esbuild \ 46 46 --prefix QUARTO_DART_SASS : ${nodePackages.sass}/bin/sass \ 47 - --prefix QUARTO_R : ${rWrapper.override { packages = [ rPackages.rmarkdown ] ++ extraRPackages; }}/bin/R \ 48 - --prefix QUARTO_PYTHON : ${python3.withPackages (ps: with ps; [ jupyter ipython ] ++ (extraPythonPackages ps))}/bin/python3 47 + ${lib.optionalString (rWrapper != null) "--prefix QUARTO_R : ${rWrapper.override { packages = [ rPackages.rmarkdown ] ++ extraRPackages; }}/bin/R"} \ 48 + ${lib.optionalString (python3 != null) "--prefix QUARTO_PYTHON : ${python3.withPackages (ps: with ps; [ jupyter ipython ] ++ (extraPythonPackages ps))}/bin/python3"} 49 49 ''; 50 50 51 51 installPhase = '' ··· 70 70 homepage = "https://quarto.org/"; 71 71 changelog = "https://github.com/quarto-dev/quarto-cli/releases/tag/v${version}"; 72 72 license = licenses.gpl2Plus; 73 - maintainers = with maintainers; [ mrtarantoga ]; 73 + maintainers = with maintainers; [ minijackson mrtarantoga ]; 74 74 platforms = [ "x86_64-linux" ]; 75 75 sourceProvenance = with sourceTypes; [ binaryNativeCode binaryBytecode ]; 76 76 };
+2
pkgs/top-level/all-packages.nix
··· 23722 23722 23723 23723 quarto = callPackage ../development/libraries/quarto { }; 23724 23724 23725 + quartoMinimal = callPackage ../development/libraries/quarto { rWrapper = null; python3 = null; }; 23726 + 23725 23727 qt4 = qt48; 23726 23728 23727 23729 qt48 = callPackage ../development/libraries/qt-4.x/4.8 {