typos: move to by-name (#345681)

This commit is contained in:
Nick Cao 2024-10-01 16:42:22 -04:00 committed by GitHub
commit 5f7a247c2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 5 deletions

View File

@ -1,4 +1,8 @@
{ lib, rustPlatform, fetchFromGitHub }:
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "typos";
@ -18,7 +22,13 @@ rustPlatform.buildRustPackage rec {
mainProgram = "typos";
homepage = "https://github.com/crate-ci/typos";
changelog = "https://github.com/crate-ci/typos/blob/${src.rev}/CHANGELOG.md";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ figsoda mgttlinger ];
license = with licenses; [
asl20 # or
mit
];
maintainers = with maintainers; [
figsoda
mgttlinger
];
};
}

View File

@ -13235,8 +13235,6 @@ with pkgs;
typesense = callPackage ../servers/search/typesense { };
typos = callPackage ../development/tools/typos { };
tz = callPackage ../tools/misc/tz { };
u9fs = callPackage ../servers/u9fs { };