nixpkgs/pkgs/tools/typesetting/tex/texpresso/default.nix
Nick Hu bf8d06ac5a
texpresso: init at 0-unstable-2024-03-24 (#299168)
* texpresso: init at 0-unstable-2024-03-24

* Update pkgs/tools/typesetting/tex/texpresso/default.nix

Co-authored-by: Alex Rice <alexrice999@hotmail.co.uk>

---------

Co-authored-by: Alex Rice <alexrice999@hotmail.co.uk>
2024-03-26 17:32:09 +00:00

75 lines
1.5 KiB
Nix

{ stdenv
, lib
, fetchFromGitHub
, makeWrapper
, writeScript
, mupdf
, SDL2
, re2c
, freetype
, jbig2dec
, harfbuzz
, openjpeg
, gumbo
, libjpeg
, texpresso-tectonic
}:
stdenv.mkDerivation rec {
pname = "texpresso";
version = "0-unstable-2024-03-24";
nativeBuildInputs = [
makeWrapper
mupdf
SDL2
re2c
freetype
jbig2dec
harfbuzz
openjpeg
gumbo
libjpeg
];
src = fetchFromGitHub {
owner = "let-def";
repo = "texpresso";
rev = "08d4ae8632ef0da349595310d87ac01e70f2c6ae";
hash = "sha256-a0yBVtLfmE0oTl599FXp7A10JoiKusofLSeXigx4GvA=";
};
buildFlags = [ "texpresso" ];
installPhase = ''
runHook preInstall
install -Dm0755 -t "$out/bin/" "build/${pname}"
runHook postInstall
'';
# needs to have texpresso-tonic on its path
postInstall = ''
wrapProgram $out/bin/texpresso \
--prefix PATH : ${lib.makeBinPath [ texpresso-tectonic ]}
'';
passthru = {
tectonic = texpresso-tectonic;
updateScript = writeScript "update-texpresso" ''
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p curl jq nix-update
tectonic_version="$(curl -s "https://api.github.com/repos/let-def/texpresso/contents/tectonic" | jq -r '.sha')"
nix-update --version=branch texpresso
nix-update --version=branch=$tectonic_version texpresso.tectonic
'';
};
meta = {
inherit (src.meta) homepage;
description = "Live rendering and error reporting for LaTeX.";
maintainers = with lib.maintainers; [ nickhu ];
license = lib.licenses.mit;
};
}