typst: format

This commit is contained in:
Gaetan Lepage 2024-10-19 00:47:53 +02:00
parent c5b89642bf
commit b5408dc9b6

View File

@ -1,13 +1,14 @@
{ lib
, rustPlatform
, fetchFromGitHub
, installShellFiles
, pkg-config
, openssl
, xz
, stdenv
, darwin
, nix-update-script
{
lib,
rustPlatform,
fetchFromGitHub,
installShellFiles,
pkg-config,
openssl,
xz,
stdenv,
darwin,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
@ -33,14 +34,16 @@ rustPlatform.buildRustPackage rec {
pkg-config
];
buildInputs = [
openssl
xz
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.CoreFoundation
darwin.apple_sdk.frameworks.CoreServices
darwin.apple_sdk.frameworks.Security
];
buildInputs =
[
openssl
xz
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.CoreFoundation
darwin.apple_sdk.frameworks.CoreServices
darwin.apple_sdk.frameworks.Security
];
env = {
GEN_ARTIFACTS = "artifacts";
@ -73,6 +76,10 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/typst/typst";
license = lib.licenses.asl20;
mainProgram = "typst";
maintainers = with lib.maintainers; [ drupol figsoda kanashimia ];
maintainers = with lib.maintainers; [
drupol
figsoda
kanashimia
];
};
}