nixpkgs/pkgs/tools/misc/gotify-desktop/default.nix

27 lines
699 B
Nix
Raw Normal View History

2021-11-17 03:48:47 +01:00
{ 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 ];
};
}