1 { lib, fetchFromGitHub, rustPlatform, openssl, pkg-config, stdenv}:
3 rustPlatform.buildRustPackage rec {
4 pname = "gotify-desktop";
7 src = fetchFromGitHub {
11 sha256 = "sha256-ISK1sI7NkXJBtuCkl5g8ffrGv5dYgzmpsmPTZmDAaMI=";
14 cargoHash = "sha256-QK2rzC9l+CiDv1+0NzR2x5B/5BYiY8KkLC2jxBdjXMU=";
16 nativeBuildInputs = [ pkg-config ];
18 buildInputs = [ openssl ];
21 description = "Small Gotify daemon to send messages as desktop notifications";
22 homepage = "https://github.com/desbma/gotify-desktop";
23 license = licenses.gpl3Plus;
24 maintainers = with maintainers; [ bryanasdev000 genofire ];
25 broken = stdenv.hostPlatform.isDarwin;
26 mainProgram = "gotify-desktop";