diff --git a/pkgs/by-name/to/tombi/package.nix b/pkgs/by-name/to/tombi/package.nix index 95aa91872287..5f27aa052a0e 100644 --- a/pkgs/by-name/to/tombi/package.nix +++ b/pkgs/by-name/to/tombi/package.nix @@ -9,19 +9,24 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "tombi"; - version = "0.11.6"; + version = "1.1.2"; + + __structuredAttrs = true; src = fetchFromGitHub { owner = "tombi-toml"; repo = "tombi"; tag = "v${finalAttrs.version}"; - hash = "sha256-m9ppr3P4HIzIzNYbLukbcCoYwRdcTWIpMmcmteIfo84="; + hash = "sha256-qgYyp8PglhRByajXartyuPgLDK8S5Uik7xABJnI26Bw="; }; # Tests relies on the presence of network doCheck = false; - cargoBuildFlags = [ "--package tombi-cli" ]; - cargoHash = "sha256-f67OkZEB98KCtvkjszrcPLoC2QWl/5rd/qvb8jmonxc="; + cargoBuildFlags = [ + "--package" + "tombi-cli" + ]; + cargoHash = "sha256-IgtFNjp8fql01KGCR6h4+QtEm3AxJxsq900ZEwhRWhg="; postPatch = '' substituteInPlace Cargo.toml \ @@ -47,7 +52,10 @@ rustPlatform.buildRustPackage (finalAttrs: { description = "TOML Formatter / Linter / Language Server"; homepage = "https://github.com/tombi-toml/tombi"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ psibi ]; + maintainers = with lib.maintainers; [ + faukah + psibi + ]; mainProgram = "tombi"; }; })