bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
42 lines
994 B
Nix
42 lines
994 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, pipewire
|
|
, pkg-config
|
|
, rustPlatform
|
|
, wayland
|
|
, wayland-protocols
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wayland-pipewire-idle-inhibit";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rafaelrc7";
|
|
repo = "wayland-pipewire-idle-inhibit";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-2akYbnQnJ0wb51S3bwrm3/EiZydxbwkfuSfsiTvtNz8=";
|
|
};
|
|
|
|
cargoHash = "sha256-C4cispJN2OQRBQiW+H36B8ETNn1oukgdELRVk7V7BQU=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
rustPlatform.bindgenHook
|
|
];
|
|
|
|
buildInputs = [
|
|
pipewire
|
|
wayland
|
|
wayland-protocols
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Suspends automatic idling of Wayland compositors when media is being played through Pipewire";
|
|
homepage = "https://github.com/rafaelrc7/wayland-pipewire-idle-inhibit/";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ rafameou ];
|
|
mainProgram = "wayland-pipewire-idle-inhibit";
|
|
};
|
|
}
|
|
|