about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/window-managers/i3/i3-resurrect.nix
blob: c5fedfbe36e75d87f204ea3c845a703ed3a2f9a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonApplication, click, i3ipc, psutil, natsort, fetchPypi, xprop, xdotool, importlib-metadata }:

buildPythonApplication rec {
  pname = "i3-resurrect";
  version = "1.4.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-13FKRvEE4vHq5G51G1UyBnfNiWeS9Q/SYCG16E1Sn4c=";
  };

  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";
    mainProgram = "i3-resurrect";
    license = licenses.gpl3;
    platforms= platforms.linux;
    maintainers = with maintainers; [ magnetophon ];
  };
}