diff options
| author | Fuwn <[email protected]> | 2024-09-14 04:42:19 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-14 04:42:19 -0700 |
| commit | e57ca4059a3b89f08f4c550e18ad4c8d424287ab (patch) | |
| tree | fb3f2dd260e441374788bf03e552a2aaa4f77166 /pkgs/git-sumi.nix | |
| parent | lib: refactor build-rust-package (diff) | |
| download | nixos-config-e57ca4059a3b89f08f4c550e18ad4c8d424287ab.tar.xz nixos-config-e57ca4059a3b89f08f4c550e18ad4c8d424287ab.zip | |
home: t
Diffstat (limited to 'pkgs/git-sumi.nix')
| -rw-r--r-- | pkgs/git-sumi.nix | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/pkgs/git-sumi.nix b/pkgs/git-sumi.nix index e58fcab..19c4ef1 100644 --- a/pkgs/git-sumi.nix +++ b/pkgs/git-sumi.nix @@ -8,13 +8,16 @@ let inherit lib rustPlatform fetchFromGitHub; }; in -buildRustPackage { - pname = "git-sumi"; - version = "3822ce390a2a04eec4513f83586f775e59f3cbf1"; - githubOwner = "welpo"; - githubHash = "sha256-s8ZeO1vprQG8POimfZqLDbfZoG2ww1plr+V5ob59kik="; - cargoHash = "sha256-hKRE3y+njdbThTHgxAGP5ZGkawSpsMLeBzNPDsBsaxY="; - description = "The non-opinionated Rust-based commit message linter."; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ Fuwn ]; -} +buildRustPackage ( + with lib; + { + pname = "git-sumi"; + version = "3822ce390a2a04eec4513f83586f775e59f3cbf1"; + githubOwner = "welpo"; + githubHash = "sha256-s8ZeO1vprQG8POimfZqLDbfZoG2ww1plr+V5ob59kik="; + cargoHash = "sha256-hKRE3y+njdbThTHgxAGP5ZGkawSpsMLeBzNPDsBsaxY="; + description = "The non-opinionated Rust-based commit message linter."; + license = licenses.asl20; + maintainers = [ maintainers.Fuwn ]; + } +) |