2022-04-25 19:13:06 +02:00
|
|
|
{ lib, buildPythonApplication, fetchFromGitHub, slurp }:
|
2022-02-15 03:18:02 +01:00
|
|
|
|
2022-04-25 19:13:06 +02:00
|
|
|
buildPythonApplication rec {
|
2022-02-15 03:18:02 +01:00
|
|
|
pname = "swaytools";
|
2022-04-25 19:13:06 +02:00
|
|
|
version = "0.1.1";
|
2022-02-15 03:18:02 +01:00
|
|
|
|
2022-04-25 19:13:06 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tmccombs";
|
|
|
|
repo = "swaytools";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-6Ec7MPqBia0PW+pBTAItLusWMg1wlFfEaxoh20/2uHg=";
|
2022-02-15 03:18:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ slurp ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/tmccombs/swaytools";
|
|
|
|
description = "Collection of simple tools for sway (and i3)";
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
maintainers = with maintainers; [ atila ];
|
2023-03-05 13:59:54 +01:00
|
|
|
platforms = platforms.linux;
|
2022-02-15 03:18:02 +01:00
|
|
|
};
|
|
|
|
}
|