biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / sipexer / default.nix
blob98aaf67d80e69204105ded1d19e91a988e6e80b3
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "sipexer";
8   version = "1.1.0";
10   src = fetchFromGitHub {
11     owner = "miconda";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-/AVOC8Tx5XMDiKmLBq2xUiJaA3K3TnWVXPE+Vzx862I=";
15   };
17   vendorHash = "sha256-q2uNqKZc6Zye7YimPDrg40o68Fo4ux4fygjVjJdhqQU=";
19   meta = with lib; {
20     description = "Modern and flexible SIP CLI tool";
21     homepage = "https://github.com/miconda/sipexer";
22     changelog = "https://github.com/miconda/sipexer/releases/tag/v${version}";
23     license = licenses.gpl3Only;
24     maintainers = with maintainers; [ astro ];
25     mainProgram = "sipexer";
26   };