depot/third_party/nixpkgs/pkgs/tools/networking/sipexer/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

26 lines
640 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "sipexer";
version = "1.0.3";
src = fetchFromGitHub {
owner = "miconda";
repo = pname;
rev = "v${version}";
sha256 = "sha256-cM40hxHMBH0wT1prSRipAZscSBxkZX7riwCrnLQUT0k=";
};
vendorSha256 = "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 ];
};
}