Merge pull request #146341 from bryanasdev000/gotify-desktop

gotify-desktop: init at 1.2.0
This commit is contained in:
Thiago Kenji Okada 2021-11-19 20:11:15 -03:00 committed by GitHub
commit c03139da1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib, fetchFromGitHub, rustPlatform, openssl, pkg-config}:
rustPlatform.buildRustPackage rec {
pname = "gotify-desktop";
version = "1.2.0";
src = fetchFromGitHub {
owner = "desbma";
repo = pname;
rev = version;
sha256 = "sha256-QQpZeXFv8BqFOQ+7ANWmtsgNlMakAL2ML4rlG2cFZJE=";
};
cargoSha256 = "sha256-zcSAsI/yGGJer7SPKDKZ6NQ3UgTdBcDighS6VTNITMo=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
meta = with lib; {
description = "Small Gotify daemon to send messages as desktop notifications";
homepage = "https://github.com/desbma/gotify-desktop";
license = licenses.gpl3Plus;
maintainers = [ maintainers.bryanasdev000 ];
};
}

View File

@ -3076,6 +3076,8 @@ with pkgs;
gotify-cli = callPackage ../tools/misc/gotify-cli { };
gotify-desktop = callPackage ../tools/misc/gotify-desktop { };
gping = callPackage ../tools/networking/gping { };
gpu-burn = callPackage ../applications/misc/gpu-burn { };