diff --git a/pkgs/by-name/ty/typst/package.nix b/pkgs/by-name/ty/typst/package.nix index de06edfee2f3..a7cb34ccb9e0 100644 --- a/pkgs/by-name/ty/typst/package.nix +++ b/pkgs/by-name/ty/typst/package.nix @@ -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 + ]; }; }