summaryrefslogtreecommitdiff
path: root/pkgs/git-sumi.nix
blob: 3f84a337534e90e91da7fafa615d95a52184369b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib
, rustPlatform
, fetchFromGitHub
,
}:
let
  rustUtils = import ../lib/rust-utils.nix {
    inherit lib rustPlatform fetchFromGitHub;
  };
in
rustUtils.mkRustPackage {
  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 ];
}