chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / wa / wayidle / package.nix
blob693459de045bc8c791305e716fcebd6821e3f788
1 { lib
2 , rustPlatform
3 , fetchFromSourcehut
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "wayidle";
8   version = "0.2.0";
10   src = fetchFromSourcehut {
11     owner = "~whynothugo";
12     repo = "wayidle";
13     rev = "v${version}";
14     hash = "sha256-7hFk/YGOQ5+gQy6pT5DRgMLThQ1vFAvUvdHekTyzIRU=";
15   };
17   cargoHash = "sha256-PohfLmUoK+2a7Glnje4Rbym2rvzydUJAYW+edOj7qeo=";
19   meta = with lib; {
20     description = "Execute a program when a Wayland compositor reports being N seconds idle";
21     homepage = "https://git.sr.ht/~whynothugo/wayidle";
22     license = licenses.isc;
23     maintainers = with maintainers; [ tomfitzhenry ];
24     mainProgram = "wayidle";
25     platforms = platforms.linux;
26   };