nixpkgs/pkgs/tools/wayland/swaytools/default.nix
2022-04-25 14:15:26 -03:00

23 lines
567 B
Nix

{ lib, buildPythonApplication, fetchFromGitHub, slurp }:
buildPythonApplication rec {
pname = "swaytools";
version = "0.1.1";
src = fetchFromGitHub {
owner = "tmccombs";
repo = "swaytools";
rev = version;
sha256 = "sha256-6Ec7MPqBia0PW+pBTAItLusWMg1wlFfEaxoh20/2uHg=";
};
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 ];
};
}