about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/astronomer/default.nix
blob: fb10f428967b60de746aa7bed80694671c0aa55c (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
25
26
27
28
29
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "astronomer";
  version = "1.1.3";

  src = fetchFromGitHub {
    owner = "Ullaakut";
    repo = "astronomer";
    rev = "v${version}";
    hash = "sha256-4hUfJI2BRZl3Trk8F2qLZAyA57kq0oW9/e13atj/BVg=";
  };

  vendorHash = "sha256-EOtpZPIrAVMPIZGnkZoNs7ovaR7Ts3dJsFLXClIoNVI=";

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

  meta = with lib; {
    description = "A tool to detect illegitimate stars from bot accounts on GitHub projects";
    homepage = "https://github.com/Ullaakut/astronomer";
    changelog = "https://github.com/Ullaakut/astronomer/releases/tag/${src.rev}";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
    mainProgram = "astronomer";
  };
}