mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
88 lines
2.4 KiB
Nix
88 lines
2.4 KiB
Nix
{ stdenv
|
|
, lib
|
|
, pandoc
|
|
, typst
|
|
, esbuild
|
|
, deno
|
|
, fetchurl
|
|
, dart-sass
|
|
, rWrapper
|
|
, rPackages
|
|
, extraRPackages ? []
|
|
, makeWrapper
|
|
, runCommand
|
|
, python3
|
|
, quarto
|
|
, extraPythonPackages ? ps: []
|
|
, sysctl
|
|
}:
|
|
|
|
stdenv.mkDerivation (final: {
|
|
pname = "quarto";
|
|
version = "1.6.33";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/quarto-dev/quarto-cli/releases/download/v${final.version}/quarto-${final.version}-linux-amd64.tar.gz";
|
|
hash = "sha256-0qCQswtBC8R1Q7pHLhJtqCncllqgXo1t9pG97VwCtAI=";
|
|
};
|
|
|
|
patches = [
|
|
./deno2.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
dontStrip = true;
|
|
|
|
preFixup = ''
|
|
wrapProgram $out/bin/quarto \
|
|
--prefix QUARTO_DENO : ${lib.getExe deno} \
|
|
--prefix QUARTO_PANDOC : ${lib.getExe pandoc} \
|
|
--prefix QUARTO_ESBUILD : ${lib.getExe esbuild} \
|
|
--prefix QUARTO_DART_SASS : ${lib.getExe dart-sass} \
|
|
--prefix QUARTO_TYPST : ${lib.getExe typst} \
|
|
${lib.optionalString (rWrapper != null) "--prefix QUARTO_R : ${rWrapper.override { packages = [ rPackages.rmarkdown ] ++ extraRPackages; }}/bin/R"} \
|
|
${lib.optionalString (python3 != null) "--prefix QUARTO_PYTHON : ${python3.withPackages (ps: with ps; [ jupyter ipython ] ++ (extraPythonPackages ps))}/bin/python3"}
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin $out/share
|
|
|
|
rm -r bin/tools
|
|
|
|
mv bin/* $out/bin
|
|
mv share/* $out/share
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.tests = {
|
|
quarto-check = runCommand "quarto-check" {
|
|
nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ sysctl ];
|
|
} ''
|
|
export HOME="$(mktemp -d)"
|
|
${quarto}/bin/quarto check
|
|
touch $out
|
|
'';
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Open-source scientific and technical publishing system built on Pandoc";
|
|
mainProgram = "quarto";
|
|
longDescription = ''
|
|
Quarto is an open-source scientific and technical publishing system built on Pandoc.
|
|
Quarto documents are authored using markdown, an easy to write plain text format.
|
|
'';
|
|
homepage = "https://quarto.org/";
|
|
changelog = "https://github.com/quarto-dev/quarto-cli/releases/tag/v${version}";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ minijackson mrtarantoga ];
|
|
platforms = platforms.all;
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode binaryBytecode ];
|
|
};
|
|
})
|