2022-08-05 22:34:19 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "sipexer";
|
2023-07-03 18:34:39 +00:00
|
|
|
version = "1.1.0";
|
2022-08-05 22:34:19 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "miconda";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-07-03 18:34:39 +00:00
|
|
|
hash = "sha256-/AVOC8Tx5XMDiKmLBq2xUiJaA3K3TnWVXPE+Vzx862I=";
|
2022-08-05 22:34:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
2023-07-03 18:34:39 +00:00
|
|
|
maintainers = with maintainers; [ astro janik ];
|
2022-08-05 22:34:19 +00:00
|
|
|
};
|
|
|
|
}
|