Merge pull request #146341 from bryanasdev000/gotify-desktop
gotify-desktop: init at 1.2.0
This commit is contained in:
commit
c03139da1d
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/misc/gotify-desktop/default.nix
Normal file
26
pkgs/tools/misc/gotify-desktop/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue