about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/window-managers/i3/kitti3.nix
blob: 3068baee5d9961f4067e5748eba5dcf6fb7aa973 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ buildPythonApplication
, fetchFromGitHub
, poetry-core
, i3ipc
, lib
}:

buildPythonApplication rec {
  pname = "kitti3";
  version = "unstable-2021-09-11";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "LandingEllipse";
    repo = pname;
    rev = "f9f94c8b9f8b61a9d085206ada470cfe755a2a92";
    hash = "sha256-bcIzbDpIe2GKS9EcVqpjwz0IG2ixNMn06OIQpZ7PeH0=";
  };

  patches = [
    # Fixes `build-system` not being specified in `pyproject.toml`
    # https://github.com/LandingEllipse/kitti3/pull/25
    ./kitti3-fix-build-system.patch
  ];

  nativeBuildInputs = [
    poetry-core
  ];

  propagatedBuildInputs = [
    i3ipc
  ];

  meta = with lib; {
    homepage = "https://github.com/LandingEllipse/kitti3";
    description = "Kitty drop-down service for sway & i3wm";
    mainProgram = "kitti3";
    license = licenses.bsd3;
    maintainers = with maintainers; [ Enzime ];
  };
}