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
39 lines
826 B
Nix
39 lines
826 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
libX11,
|
|
libXinerama,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "focus";
|
|
version = "0-unstable-2021-02-23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phillbush";
|
|
repo = "focus";
|
|
rev = "fed2fdbd3f73b192882d97aeb5b1cea681bb7d85";
|
|
sha256 = "sha256-IDiUXindzv5Ng5oCTyUlj2il/2kLvXG4YhgiYp7ZebQ=";
|
|
};
|
|
|
|
buildInputs = [
|
|
libX11
|
|
libXinerama
|
|
];
|
|
|
|
makeFlags = [ "PREFIX=\${out}" ];
|
|
|
|
meta = with lib; {
|
|
description = "Focus window, workspace or monitor by direction or cycle through them";
|
|
longDescription = ''
|
|
A collection of utilities that change the focus of windows, workspaces or
|
|
monitors.
|
|
'';
|
|
homepage = "https://github.com/phillbush/focus";
|
|
license = licenses.publicDomain;
|
|
maintainers = [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|