quartoMinimal: init at 1.2.475

In order to have a Quarto with a smaller closure size
This commit is contained in:
Minijackson 2023-06-07 11:23:06 +02:00
parent fe2fb24a00
commit 2f48eaae81
No known key found for this signature in database
GPG Key ID: FEA888C9F5D64F62
2 changed files with 5 additions and 3 deletions

View File

@ -44,8 +44,8 @@ stdenv.mkDerivation rec {
--prefix QUARTO_PANDOC : ${pandoc}/bin/pandoc \ --prefix QUARTO_PANDOC : ${pandoc}/bin/pandoc \
--prefix QUARTO_ESBUILD : ${esbuild}/bin/esbuild \ --prefix QUARTO_ESBUILD : ${esbuild}/bin/esbuild \
--prefix QUARTO_DART_SASS : ${nodePackages.sass}/bin/sass \ --prefix QUARTO_DART_SASS : ${nodePackages.sass}/bin/sass \
--prefix QUARTO_R : ${rWrapper.override { packages = [ rPackages.rmarkdown ] ++ extraRPackages; }}/bin/R \ ${lib.optionalString (rWrapper != null) "--prefix QUARTO_R : ${rWrapper.override { packages = [ rPackages.rmarkdown ] ++ extraRPackages; }}/bin/R"} \
--prefix QUARTO_PYTHON : ${python3.withPackages (ps: with ps; [ jupyter ipython ] ++ (extraPythonPackages ps))}/bin/python3 ${lib.optionalString (python3 != null) "--prefix QUARTO_PYTHON : ${python3.withPackages (ps: with ps; [ jupyter ipython ] ++ (extraPythonPackages ps))}/bin/python3"}
''; '';
installPhase = '' installPhase = ''
@ -70,7 +70,7 @@ stdenv.mkDerivation rec {
homepage = "https://quarto.org/"; homepage = "https://quarto.org/";
changelog = "https://github.com/quarto-dev/quarto-cli/releases/tag/v${version}"; changelog = "https://github.com/quarto-dev/quarto-cli/releases/tag/v${version}";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ mrtarantoga ]; maintainers = with maintainers; [ minijackson mrtarantoga ];
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
sourceProvenance = with sourceTypes; [ binaryNativeCode binaryBytecode ]; sourceProvenance = with sourceTypes; [ binaryNativeCode binaryBytecode ];
}; };

View File

@ -23722,6 +23722,8 @@ with pkgs;
quarto = callPackage ../development/libraries/quarto { }; quarto = callPackage ../development/libraries/quarto { };
quartoMinimal = callPackage ../development/libraries/quarto { rWrapper = null; python3 = null; };
qt4 = qt48; qt4 = qt48;
qt48 = callPackage ../development/libraries/qt-4.x/4.8 { qt48 = callPackage ../development/libraries/qt-4.x/4.8 {