inhibridge: init at 0.3.0

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu
2024-05-26 16:14:36 +02:00
parent d52711004f
commit 0407dd70a5
+29
View File
@@ -0,0 +1,29 @@
{
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";
};
}