nixpkgs/pkgs/applications/window-managers/i3/kitti3.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

42 lines
905 B
Nix

{ 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 ];
};
}