evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / as / astronomer / package.nix
blob77b30afa05290a03f9262e8e8a86b93f009a47eb
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "astronomer";
8   version = "1.1.3";
10   src = fetchFromGitHub {
11     owner = "Ullaakut";
12     repo = "astronomer";
13     rev = "v${version}";
14     hash = "sha256-4hUfJI2BRZl3Trk8F2qLZAyA57kq0oW9/e13atj/BVg=";
15   };
17   vendorHash = "sha256-EOtpZPIrAVMPIZGnkZoNs7ovaR7Ts3dJsFLXClIoNVI=";
19   ldflags = [ "-s" "-w" ];
21   meta = with lib; {
22     description = "Tool to detect illegitimate stars from bot accounts on GitHub projects";
23     homepage = "https://github.com/Ullaakut/astronomer";
24     changelog = "https://github.com/Ullaakut/astronomer/releases/tag/${src.rev}";
25     license = licenses.mit;
26     maintainers = with maintainers; [ figsoda ];
27     mainProgram = "astronomer";
28   };