Merge pull request #236550 from figsoda/typst-live

This commit is contained in:
figsoda 2023-06-09 20:50:09 -04:00 committed by GitHub
commit 40acefa262
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,42 @@
{ lib
, rustPlatform
, fetchFromGitHub
, stdenv
, darwin
, makeWrapper
, typst
}:
rustPlatform.buildRustPackage {
pname = "typst-live";
version = "unstable-2023-05-27";
src = fetchFromGitHub {
owner = "ItsEthra";
repo = "typst-live";
rev = "10a2da57b93f8d6e4eaa0bfcec1e68e46b916868";
hash = "sha256-42QzqbyIjPn0C4coCU81gtlI7v5XJStlsDZvnLlwpYs=";
};
cargoHash = "sha256-M5jYSLw5oquAq2gGWZOJvx5/CGAl2Rg+G94V6ivAOzc=";
nativeBuildInputs = [
makeWrapper
];
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreServices
];
postInstall = ''
wrapProgram $out/bin/typst-live \
--suffix PATH : ${lib.makeBinPath [ typst ]}
'';
meta = with lib; {
description = "Hot reloading for your typst files";
homepage = "https://github.com/ItsEthra/typst-live";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}

View File

@ -13398,6 +13398,8 @@ with pkgs;
typst-fmt = callPackage ../tools/typesetting/typst-fmt { };
typst-live = callPackage ../tools/typesetting/typst-live { };
tz = callPackage ../tools/misc/tz { };
u9fs = callPackage ../servers/u9fs { };