biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / window-managers / i3 / auto-layout.nix
blobef6c27de438efee9b8b5a02cd48f7ec8eea79672
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "i3-auto-layout";
5   version = "unstable-2022-05-29";
7   src = fetchFromGitHub {
8     owner = "chmln";
9     repo = pname;
10     rev = "9e41eb3891991c35b7d35c9558e788899519a983";
11     sha256 = "sha256-gpVYVyh+2y4Tttvw1SuCf7mx/nxR330Ob2R4UmHZSJs=";
12   };
14   cargoHash = "sha256-OxQ7S+Sqc3aRH53Bs53Y+EKOYFgboGOBsQ7KJgICcGo=";
16   # Currently no tests are implemented, so we avoid building the package twice
17   doCheck = false;
19   meta = with lib; {
20     description = "Automatic, optimal tiling for i3wm";
21     mainProgram = "i3-auto-layout";
22     homepage = "https://github.com/chmln/i3-auto-layout";
23     license = licenses.mit;
24     maintainers = with maintainers; [ mephistophiles perstark ];
25     platforms = platforms.linux;
26   };