chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ri / rita / package.nix
blob4ebe27f8fbe4efedfc73ee50a72c80a003337151
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "rita";
8   version = "4.8.1";
10   src = fetchFromGitHub {
11     owner = "activecm";
12     repo = "rita";
13     rev = "refs/tags/v${version}";
14     hash = "sha256-By0JvQ4LTm+NEnRMadE1x2PiiYqnJQCsF3Fy+gHulXs=";
15   };
17   vendorHash = "sha256-KyC7VPgWlgKD6KWWRo3hFQHl2HjTub+VSMtJCpYE6Zk=";
19   ldflags = [
20     "-s"
21     "-w"
22     "-X=github.com/activecm/rita/config.Version=${version}"
23     "-X=github.com/activecm/rita/config.ExactVersion=${version}"
24   ];
26   meta = with lib; {
27     description = "Framework for detecting command and control communication through network traffic analysis";
28     homepage = "https://github.com/activecm/rita";
29     changelog = "https://github.com/activecm/rita/releases/tag/v${version}";
30     license = licenses.gpl3Only;
31     maintainers = with maintainers; [ fab ];
32     mainProgram = "rita";
33   };