ntfy-sh: init at 1.18.1 (#166102)
This commit is contained in:
parent
7c4f9e0e24
commit
0a38079425
28
pkgs/tools/misc/ntfy-sh/default.nix
Normal file
28
pkgs/tools/misc/ntfy-sh/default.nix
Normal file
@ -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…
Reference in New Issue
Block a user