about summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorEmily Trau <13267947+emilytrau@users.noreply.github.com>2023-11-29 17:46:18 +1100
committerGitHub <noreply@github.com>2023-11-29 17:46:18 +1100
commitfc44fb5df2f07b04114a0cf0677b7e9e95962ba2 (patch)
tree95715af54268dd1a940d10cae77dbe76d1c41430 /pkgs/applications/window-managers
parent0e82926287b6bbb27ab596435c9ee2e131d5fe46 (diff)
parent6f795d50c7de9c383800c3c7729ce8e720e5d70f (diff)
Merge pull request #268653 from perstarkse/i3-auto-layout/update-to-unstable
i3-auto-layout: 0.2 -> unstable 2022-05-29
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/i3/auto-layout.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/window-managers/i3/auto-layout.nix b/pkgs/applications/window-managers/i3/auto-layout.nix
index 754163547e765..dfc0974834f4f 100644
--- a/pkgs/applications/window-managers/i3/auto-layout.nix
+++ b/pkgs/applications/window-managers/i3/auto-layout.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "i3-auto-layout";
-  version = "0.2";
+  version = "unstable-2022-05-29";
 
   src = fetchFromGitHub {
     owner = "chmln";
     repo = pname;
-    rev = "v${version}";
-    sha256 = "0ps08lga6qkgc8cgf5cx2lgwlqcnd2yazphh9xd2fznnzrllfxxz";
+    rev = "9e41eb3891991c35b7d35c9558e788899519a983";
+    sha256 = "sha256-gpVYVyh+2y4Tttvw1SuCf7mx/nxR330Ob2R4UmHZSJs=";
   };
 
-  cargoSha256 = "1i01kqvsykanzs7pi94gab9k2dqg1ki40mmjrwa22n0ypkbnvsmx";
+  cargoSha256 = "sha256-OxQ7S+Sqc3aRH53Bs53Y+EKOYFgboGOBsQ7KJgICcGo=";
 
   # Currently no tests are implemented, so we avoid building the package twice
   doCheck = false;
@@ -20,7 +20,7 @@ rustPlatform.buildRustPackage rec {
     description = "Automatic, optimal tiling for i3wm";
     homepage = "https://github.com/chmln/i3-auto-layout";
     license = licenses.mit;
-    maintainers = with maintainers; [ mephistophiles ];
+    maintainers = with maintainers; [ mephistophiles perstark ];
     platforms = platforms.linux;
   };
 }