Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
886 B
Nix
43 lines
886 B
Nix
{
|
|
buildPythonApplication,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
i3ipc,
|
|
lib,
|
|
}:
|
|
|
|
buildPythonApplication {
|
|
pname = "kitti3";
|
|
version = "unstable-2021-09-11";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "LandingEllipse";
|
|
repo = "kitti3";
|
|
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 = [ ];
|
|
};
|
|
}
|