diff options
| author | Fuwn <[email protected]> | 2024-09-16 19:00:22 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-16 19:01:18 -0700 |
| commit | d1525c29af2f0c58fd4970fc33cc641cb460bbef (patch) | |
| tree | 8e930859a82585e1b29a5ab595197dbd14d7c537 /pkgs/git-sumi.nix | |
| download | tsutsumi-d1525c29af2f0c58fd4970fc33cc641cb460bbef.tar.xz tsutsumi-d1525c29af2f0c58fd4970fc33cc641cb460bbef.zip | |
feat: initial release
Diffstat (limited to 'pkgs/git-sumi.nix')
| -rw-r--r-- | pkgs/git-sumi.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/git-sumi.nix b/pkgs/git-sumi.nix new file mode 100644 index 0000000..5393107 --- /dev/null +++ b/pkgs/git-sumi.nix @@ -0,0 +1,17 @@ +{ + lib, + pkgs, +}: +pkgs.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 ]; + } +) |