summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-appraise/default.nix
blob: 8b5844fb76ce96225840c59b9404a467c7719db8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "git-appraise";
  version = "unstable-2022-04-13";

  src = fetchFromGitHub {
    owner = "google";
    repo = "git-appraise";
    rev = "99aeb0e71544d3e1952e208c339b1aec70968cf3";
    sha256 = "sha256-TteTI8yGP2sckoJ5xuBB5S8xzm1upXmZPlcDLvXZrpc=";
  };

  vendorSha256 = "sha256-Lzq4qpDAUjKFA2T685eW9NCfzEhDsn5UR1A1cIaZadE=";

  ldflags = [ "-s" "-w" ];

  meta = with lib; {
    description = "Distributed code review system for Git repos";
    homepage = "https://github.com/google/git-appraise";
    license = licenses.asl20;
    maintainers = with maintainers; [ vdemeester ];
  };
}