mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
9ce1ec8d2d
corrected from https://github.com/NixOS/nixpkgs/pull/97480 by @vldn-dev
23 lines
729 B
Nix
23 lines
729 B
Nix
{ 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 ];
|
|
};
|
|
}
|