evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / gotify-desktop / package.nix
blobe184c38d5eb7c0fc8b6d857a28712ad830e88b8f
1 { lib, fetchFromGitHub, rustPlatform, openssl, pkg-config, stdenv}:
3 rustPlatform.buildRustPackage rec {
4   pname = "gotify-desktop";
5   version = "1.3.7";
7   src = fetchFromGitHub {
8     owner = "desbma";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-ISK1sI7NkXJBtuCkl5g8ffrGv5dYgzmpsmPTZmDAaMI=";
12   };
14   cargoHash = "sha256-QK2rzC9l+CiDv1+0NzR2x5B/5BYiY8KkLC2jxBdjXMU=";
16   nativeBuildInputs = [ pkg-config ];
18   buildInputs = [ openssl ];
20   meta = with lib; {
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";
27   };