biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / ae / aeacus / package.nix
blob07a75a2d3a3cdaaf33a9e619fde0e5e47a059f19
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "aeacus";
9   version = "2.1.1";
11   src = fetchFromGitHub {
12     owner = "elysium-suite";
13     repo = "aeacus";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-LMsfogcz3CoShQDqyshMshb+iz2r0k5I7NDLXevMakI=";
16   };
18   vendorHash = "sha256-WOXOM08UYECdGx+e54n4BgLP3cr+st3qKi8iQXebPvk=";
20   ldflags = [
21     "-s"
22     "-w"
23   ];
25   # Tests require network access
26   doCheck = false;
28   meta = with lib; {
29     description = "Vulnerability remediation scoring system";
30     homepage = "https://github.com/elysium-suite/aeacus";
31     changelog = "https://github.com/elysium-suite/aeacus/releases/tag/v${version}";
32     license = licenses.gpl2Only;
33     maintainers = with maintainers; [ fab ];
34     mainProgram = "aeacus";
35     platforms = platforms.linux;
36   };