depot/third_party/nixpkgs/pkgs/tools/networking/sipexer/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

26 lines
642 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "sipexer";
version = "1.1.0";
src = fetchFromGitHub {
owner = "miconda";
repo = pname;
rev = "v${version}";
hash = "sha256-/AVOC8Tx5XMDiKmLBq2xUiJaA3K3TnWVXPE+Vzx862I=";
};
vendorHash = "sha256-q2uNqKZc6Zye7YimPDrg40o68Fo4ux4fygjVjJdhqQU=";
meta = with lib; {
description = "Modern and flexible SIP CLI tool";
homepage = "https://github.com/miconda/sipexer";
changelog = "https://github.com/miconda/sipexer/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ astro janik ];
};
}