mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
0407dd70a5
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
30 lines
737 B
Nix
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";
|
|
};
|
|
}
|
|
|