sipexer: init at 1.0.3 (#185278)
Co-authored-by: Winter <winter@winter.cafe>
This commit is contained in:
parent
219b3ba9a8
commit
5b51b71502
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/networking/sipexer/default.nix
Normal file
26
pkgs/tools/networking/sipexer/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -10669,6 +10669,8 @@ with pkgs;
|
|||
|
||||
simplescreenrecorder = libsForQt5.callPackage ../applications/video/simplescreenrecorder { };
|
||||
|
||||
sipexer = callPackage ../tools/networking/sipexer { };
|
||||
|
||||
sipsak = callPackage ../tools/networking/sipsak { };
|
||||
|
||||
sipvicious = python3Packages.callPackage ../tools/security/sipvicious { };
|
||||
|
|
Loading…
Reference in a new issue