evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / in / inhibridge / package.nix
blob4340d4a3e8696f500e6695f4cf81a42d7dd98c7d
2   lib,
3   rustPlatform,
4   fetchFromGitea,
5 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "inhibridge";
8   version = "0.3.0";
10   src = fetchFromGitea {
11     domain = "codeberg.org";
12     owner = "Scrumplex";
13     repo = "inhibridge";
14     rev = version;
15     hash = "sha256-cKVw3Gd4Ml8BeXjZqTN6ToeRzO9PI+Sn45gpltlRuWM=";
16   };
18   cargoHash = "sha256-uKSbxAsGUR2nYfdtiTR/bgPBQunqYLzx3+CmszNilPQ=";
20   meta = with lib; {
21     homepage = "https://codeberg.org/Scrumplex/inhibridge";
22     description = "Simple daemon that bridges freedesktop.org ScreenSaver inhibitions to systemd-inhibit";
23     platforms = platforms.linux;
24     license = licenses.agpl3Plus;
25     maintainers = with maintainers; [Scrumplex];
26     mainProgram = "inhibridge";
27   };