nixpkgs/pkgs/by-name/in/inhibridge/package.nix
Sefa Eyeoglu 0407dd70a5
inhibridge: init at 0.3.0
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-05-26 16:14:36 +02:00

30 lines
737 B
Nix

{
lib,
rustPlatform,
fetchFromGitea,
}:
rustPlatform.buildRustPackage rec {
pname = "inhibridge";
version = "0.3.0";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "Scrumplex";
repo = "inhibridge";
rev = version;
hash = "sha256-cKVw3Gd4Ml8BeXjZqTN6ToeRzO9PI+Sn45gpltlRuWM=";
};
cargoHash = "sha256-uKSbxAsGUR2nYfdtiTR/bgPBQunqYLzx3+CmszNilPQ=";
meta = with lib; {
homepage = "https://codeberg.org/Scrumplex/inhibridge";
description = "Simple daemon that bridges freedesktop.org ScreenSaver inhibitions to systemd-inhibit";
platforms = platforms.linux;
license = licenses.agpl3Plus;
maintainers = with maintainers; [Scrumplex];
mainProgram = "inhibridge";
};
}