Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "git-appraise"; 5 version = "unstable-2022-04-13"; 6 7 src = fetchFromGitHub { 8 owner = "google"; 9 repo = "git-appraise"; 10 rev = "99aeb0e71544d3e1952e208c339b1aec70968cf3"; 11 sha256 = "sha256-TteTI8yGP2sckoJ5xuBB5S8xzm1upXmZPlcDLvXZrpc="; 12 }; 13 14 vendorSha256 = "sha256-Lzq4qpDAUjKFA2T685eW9NCfzEhDsn5UR1A1cIaZadE="; 15 16 ldflags = [ "-s" "-w" ]; 17 18 meta = with lib; { 19 description = "Distributed code review system for Git repos"; 20 homepage = "https://github.com/google/git-appraise"; 21 license = licenses.asl20; 22 maintainers = with maintainers; [ vdemeester ]; 23 }; 24}