Merge pull request #117870 from Mephistophiles/i3wm/packages
i3wm.i3-auto-layout: init at 0.2.0
This commit is contained in:
commit
4e5687f0e5
@ -6186,6 +6186,12 @@
|
|||||||
github = "meutraa";
|
github = "meutraa";
|
||||||
githubId = 68550871;
|
githubId = 68550871;
|
||||||
};
|
};
|
||||||
|
mephistophiles = {
|
||||||
|
email = "mussitantesmortem@gmail.com";
|
||||||
|
name = "Maxim Zhukov";
|
||||||
|
github = "Mephistophiles";
|
||||||
|
githubId = 4850908;
|
||||||
|
};
|
||||||
mfossen = {
|
mfossen = {
|
||||||
email = "msfossen@gmail.com";
|
email = "msfossen@gmail.com";
|
||||||
github = "mfossen";
|
github = "mfossen";
|
||||||
|
26
pkgs/applications/window-managers/i3/auto-layout.nix
Normal file
26
pkgs/applications/window-managers/i3/auto-layout.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, rustPlatform, fetchFromGitHub }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "i3-auto-layout";
|
||||||
|
version = "0.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "chmln";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0ps08lga6qkgc8cgf5cx2lgwlqcnd2yazphh9xd2fznnzrllfxxz";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "1ch5mh515rlqmr65x96xcvrx6iaigqgjxc7sbwbznzkc5kmvwhc0";
|
||||||
|
|
||||||
|
# Currently no tests are implemented, so we avoid building the package twice
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Automatic, optimal tiling for i3wm";
|
||||||
|
homepage = "https://github.com/chmln/i3-auto-layout";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ mephistophiles ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -23364,6 +23364,8 @@ in
|
|||||||
xcb-util-cursor = if stdenv.isDarwin then xcb-util-cursor-HEAD else xcb-util-cursor;
|
xcb-util-cursor = if stdenv.isDarwin then xcb-util-cursor-HEAD else xcb-util-cursor;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
i3-auto-layout = callPackage ../applications/window-managers/i3/auto-layout.nix { };
|
||||||
|
|
||||||
i3-gaps = callPackage ../applications/window-managers/i3/gaps.nix { };
|
i3-gaps = callPackage ../applications/window-managers/i3/gaps.nix { };
|
||||||
|
|
||||||
i3altlayout = callPackage ../applications/window-managers/i3/altlayout.nix { };
|
i3altlayout = callPackage ../applications/window-managers/i3/altlayout.nix { };
|
||||||
|
Loading…
Reference in New Issue
Block a user