i3-resurrect: init at 1.4.3
corrected from https://github.com/NixOS/nixpkgs/pull/97480 by @vldn-dev
This commit is contained in:
parent
ffcf28a5e3
commit
9ce1ec8d2d
2 changed files with 24 additions and 0 deletions
22
pkgs/applications/window-managers/i3/i3-resurrect.nix
Normal file
22
pkgs/applications/window-managers/i3/i3-resurrect.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, buildPythonApplication, click, i3ipc, psutil, natsort, fetchPypi, xprop, xdotool, importlib-metadata }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "i3-resurrect";
|
||||
version = "1.4.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0h181frdwpqfj9agw43qgicdvzv1i7xwky0vs0ksd8h18qxqp4hr";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ click psutil xprop natsort i3ipc xdotool importlib-metadata ];
|
||||
doCheck = false; # no tests
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/JonnyHaystack/i3-resurrect";
|
||||
description = "A simple but flexible solution to saving and restoring i3 workspaces";
|
||||
license = licenses.gpl3;
|
||||
platforms= platforms.linux;
|
||||
maintainers = with maintainers; [ magnetophon ];
|
||||
};
|
||||
}
|
|
@ -21717,6 +21717,8 @@ in
|
|||
|
||||
i3-layout-manager = callPackage ../applications/window-managers/i3/layout-manager.nix { };
|
||||
|
||||
i3-resurrect = python3Packages.callPackage ../applications/window-managers/i3/i3-resurrect.nix { };
|
||||
|
||||
i3blocks = callPackage ../applications/window-managers/i3/blocks.nix { };
|
||||
|
||||
i3blocks-gaps = callPackage ../applications/window-managers/i3/blocks-gaps.nix { };
|
||||
|
|
Loading…
Reference in a new issue