mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
Merge pull request #160352 from IvarWithoutBones/init/i3-swallow
i3-swallow: init at unstable-2022-02-19
This commit is contained in:
commit
aa58db21c6
2 changed files with 46 additions and 0 deletions
44
pkgs/applications/window-managers/i3/swallow.nix
Normal file
44
pkgs/applications/window-managers/i3/swallow.nix
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonApplication
|
||||||
|
, fetchFromGitHub
|
||||||
|
, poetry-core
|
||||||
|
, i3ipc
|
||||||
|
, xlib
|
||||||
|
, six
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
pname = "i3-swallow";
|
||||||
|
version = "unstable-2022-02-19";
|
||||||
|
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jamesofarrell";
|
||||||
|
repo = "i3-swallow";
|
||||||
|
rev = "6fbc04645c483fe733de56b56743e453693d4c78";
|
||||||
|
sha256 = "1l3x8mixwq4n0lnyp0wz5vijgnypamq6lqjazcd2ywl2jv8d6fif";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
poetry-core
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
i3ipc
|
||||||
|
xlib
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
|
# No tests available
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/jamesofarrell/i3-swallow";
|
||||||
|
description = "Swallow a terminal window in i3wm";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
mainProgram = "swallow";
|
||||||
|
maintainers = [ maintainers.ivar ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -26485,6 +26485,8 @@ with pkgs;
|
||||||
|
|
||||||
i3-resurrect = python3Packages.callPackage ../applications/window-managers/i3/i3-resurrect.nix { };
|
i3-resurrect = python3Packages.callPackage ../applications/window-managers/i3/i3-resurrect.nix { };
|
||||||
|
|
||||||
|
i3-swallow = python3Packages.callPackage ../applications/window-managers/i3/swallow.nix { };
|
||||||
|
|
||||||
i3blocks = callPackage ../applications/window-managers/i3/blocks.nix { };
|
i3blocks = callPackage ../applications/window-managers/i3/blocks.nix { };
|
||||||
|
|
||||||
i3blocks-gaps = callPackage ../applications/window-managers/i3/blocks-gaps.nix { };
|
i3blocks-gaps = callPackage ../applications/window-managers/i3/blocks-gaps.nix { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue