Merge pull request #178808 from azahi/focusmon

focus: init at unstable-2021-02-23
main
Sandro 2 years ago committed by GitHub
commit 7b257a7b4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 34
      pkgs/tools/X11/focus/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,34 @@
{ lib
, stdenv
, fetchFromGitHub
, libX11
, libXinerama
}:
stdenv.mkDerivation rec {
pname = "focus";
version = "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 = with maintainers; [ azahi ];
platforms = platforms.unix;
};
}

@ -26435,6 +26435,8 @@ with pkgs;
fnc = callPackage ../applications/version-management/fnc { };
focus = callPackage ../tools/X11/focus { };
focuswriter = libsForQt5.callPackage ../applications/editors/focuswriter { };
foliate = callPackage ../applications/office/foliate { };

Loading…
Cancel
Save