nixos/privatebin: fix defaultText (#378964)
[NixPkgs.git] / pkgs / by-name / ae / aeacus / package.nix
blobb1264a51eb4b97dea968575af8d737c4d201bae9
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     tag = "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   };