biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / window-managers / i3 / cycle-focus.nix
blobf6ae488b0789126b3775e7550e6894ec6596da7c
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage {
7   pname = "i3-cycle-focus";
8   version = "unstable-2021-09-27";
10   src = fetchFromGitHub {
11     owner = "TheDoctor314";
12     repo = "i3-cycle-focus";
13     rev = "d94f22e4b8502de4ed846a211fa0c8418b3e3e89";
14     hash = "sha256-caZKvxOqoYgPs+Zjltj8K0/ospjkLnA4kh0rsTjeU3Y=";
15   };
17   cargoHash = "sha256-9glaxThm/ovgvUWCyrycS/Oe5t8iN5P38fF5vO5awQE=";
19   meta = with lib; {
20     description = "Simple tool to cyclically switch between the windows on the active workspace";
21     mainProgram = "i3-cycle-focus";
22     homepage = "https://github.com/TheDoctor314/i3-cycle-focus";
23     license = licenses.unlicense;
24     maintainers = with maintainers; [ GaetanLepage ];
25     platforms = platforms.linux;
26   };