lol

focus: init at unstable-2021-02-23

+36
+34
pkgs/tools/X11/focus/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , libX11 5 + , libXinerama 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "focus"; 10 + version = "unstable-2021-02-23"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "phillbush"; 14 + repo = "focus"; 15 + rev = "fed2fdbd3f73b192882d97aeb5b1cea681bb7d85"; 16 + sha256 = "sha256-IDiUXindzv5Ng5oCTyUlj2il/2kLvXG4YhgiYp7ZebQ="; 17 + }; 18 + 19 + buildInputs = [ libX11 libXinerama ]; 20 + 21 + makeFlags = [ "PREFIX=\${out}" ]; 22 + 23 + meta = with lib; { 24 + description = "Focus window, workspace or monitor by direction or cycle through them"; 25 + longDescription = '' 26 + A collection of utilities that change the focus of windows, workspaces or 27 + monitors. 28 + ''; 29 + homepage = "https://github.com/phillbush/focus"; 30 + license = licenses.publicDomain; 31 + maintainers = with maintainers; [ azahi ]; 32 + platforms = platforms.unix; 33 + }; 34 + }
+2
pkgs/top-level/all-packages.nix
··· 26403 26403 26404 26404 fnc = callPackage ../applications/version-management/fnc { }; 26405 26405 26406 + focus = callPackage ../tools/X11/focus { }; 26407 + 26406 26408 focuswriter = libsForQt5.callPackage ../applications/editors/focuswriter { }; 26407 26409 26408 26410 foliate = callPackage ../applications/office/foliate { };