mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 22:14:34 +00:00
f7f5555216
* sipexer: 1.0.3 -> 1.1.0 * Update pkgs/tools/networking/sipexer/default.nix --------- Co-authored-by: Pol Dellaiera <pol.dellaiera@protonmail.com>
27 lines
644 B
Nix
27 lines
644 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=";
|
|
};
|
|
|
|
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 janik ];
|
|
};
|
|
}
|