ntfy-sh: init at 1.18.1 (#166102)

main
arjan-s 2 years ago committed by GitHub
parent 7c4f9e0e24
commit 0a38079425
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 28
      pkgs/tools/misc/ntfy-sh/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,28 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "ntfy-sh";
version = "1.18.1";
src = fetchFromGitHub {
owner = "binwiederhier";
repo = "ntfy";
rev = "v${version}";
sha256 = "sha256-rXdkNJYpQ8s2BeFRR4fSIuCrdq60me4B3wee64ei8qM=";
};
vendorSha256 = "sha256-7b3cQczQLUZ//5ubKvq8s9U75qJpJaieLN+kzjXIyHg=";
doCheck = false;
preBuild = ''
make server-deps-static-sites
'';
meta = with lib; {
description = "Send push notifications to your phone or desktop via PUT/POST";
homepage = "https://ntfy.sh";
license = licenses.asl20;
maintainers = with maintainers; [ arjan-s ];
};
}

@ -8500,6 +8500,8 @@ with pkgs;
ntfy = callPackage ../tools/misc/ntfy {};
ntfy-sh = callPackage ../tools/misc/ntfy-sh {};
ntirpc = callPackage ../development/libraries/ntirpc { };
ntopng = callPackage ../tools/networking/ntopng { };

Loading…
Cancel
Save