nixpkgs/pkgs/tools/wayland/swaytools/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
600 B
Nix
Raw Normal View History

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 ];
platforms = platforms.linux;
2022-02-15 03:18:02 +01:00
};
}