mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 23:23:36 +00:00
![Gaetan Lepage](/assets/img/avatar_default.png)
Diff: https://github.com/Enter-tainer/typstyle/compare/refs/tags/v0.11.28...v0.11.29 Changelog: https://github.com/Enter-tainer/typstyle/blob/refs/tags/v0.11.29/CHANGELOG.md
60 lines
1.3 KiB
Nix
60 lines
1.3 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, libgit2
|
|
, zlib
|
|
, stdenv
|
|
, darwin
|
|
, nix-update-script
|
|
, testers
|
|
, typstyle
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "typstyle";
|
|
version = "0.11.29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Enter-tainer";
|
|
repo = "typstyle";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-7BjbML7mz5ohEdh+x6qL8pH2BTFW8WdtB0g91NHFIBY=";
|
|
};
|
|
|
|
cargoHash = "sha256-bcOfgiQ7mT7HE1hUXfBlj6SzMUtS5Ar2X9kjFGKPR2w=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libgit2
|
|
zlib
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.CoreFoundation
|
|
darwin.apple_sdk.frameworks.CoreServices
|
|
darwin.apple_sdk.frameworks.Security
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
];
|
|
|
|
# Disabling tests requiring network access
|
|
checkFlags = [
|
|
"--skip=e2e"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests.version = testers.testVersion { package = typstyle; };
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/Enter-tainer/typstyle/blob/${src.rev}/CHANGELOG.md";
|
|
description = "Format your typst source code";
|
|
homepage = "https://github.com/Enter-tainer/typstyle";
|
|
license = lib.licenses.asl20;
|
|
mainProgram = "typstyle";
|
|
maintainers = with lib.maintainers; [ drupol ];
|
|
};
|
|
}
|