summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--default.nix1
-rw-r--r--pkgs/wmfocus/default.nix40
-rw-r--r--pkgs/wmfocus/metadata.nix5
-rwxr-xr-xupdate.sh1
5 files changed, 0 insertions, 49 deletions
diff --git a/README.md b/README.md
index 1feeba1..c657a42 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,6 @@ Packages from this overlay are regularly updated and built against `nixos-unstab
| pkgs/bspwc | [2018-12-29 15:21](https://github.com/Bl4ckb0ne/bspwc/commits/e72ff641bd30d3db153d879cea1cffd149931546) |
| pkgs/waybox | [2018-11-27 06:44](https://github.com/wizbright/waybox/commits/482d0a92f5530a5cbab8b0b913b653d4503015c4) |
| pkgs/wl-clipboard | [2019-01-30 06:34](https://github.com/bugaevc/wl-clipboard/commits/7f3646611335e42b2b93c053792c9f6659c87cde) |
-| pkgs/wmfocus | [2019-02-07 00:09](https://github.com/svenstaro/wmfocus/commits/c8a5cfcb91a5e283cadb044f317de39c08bca115) |
| pkgs/i3status-rust | [2019-02-02 06:04](https://github.com/greshake/i3status-rust/commits/550b60039a688d33df1439b7a003499fdd2ee90c) |
<!--pkgs-->
@@ -74,7 +73,6 @@ in
mako # notification daemon
wlstream # screen recorder
oguri # animated background utility
- wmfocus # fast window picker utility
kanshi # dynamic display configuration helper
redshift-wayland # patched to work with wayland gamma protocol
];
diff --git a/default.nix b/default.nix
index 1cf26e1..4896fd9 100644
--- a/default.nix
+++ b/default.nix
@@ -27,7 +27,6 @@ waylandPkgs = rec {
wl-clipboard = pkgs.callPackage ./pkgs/wl-clipboard {};
# i3-related
- wmfocus = pkgs.callPackage ./pkgs/wmfocus {};
i3status-rust = pkgs.callPackage ./pkgs/i3status-rust {};
};
in
diff --git a/pkgs/wmfocus/default.nix b/pkgs/wmfocus/default.nix
deleted file mode 100644
index ac3d7fc..0000000
--- a/pkgs/wmfocus/default.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ stdenv, fetchFromGitHub, rustPlatform,
- xorg, python3, pkgconfig, cairo, libxkbcommon }:
-let
- metadata = import ./metadata.nix;
- pname = "wmfocus";
- version = metadata.rev;
- hash = metadata.sha256;
-in
-rustPlatform.buildRustPackage {
- inherit pname version;
- name = "${pname}-${version}";
-
- nativeBuildInputs = [ python3 pkgconfig ];
- buildInputs = [ cairo libxkbcommon xorg.xcbutilkeysyms ];
-
- # For now, this is the only available featureset. This is also why the file is
- # in the i3 folder, even though it might be useful for more than just i3
- # users.
- cargoBuildFlags = ["--features i3"];
-
- src = fetchFromGitHub {
- owner = "svenstaro";
- repo = pname;
- rev = version;
- sha256 = hash;
- };
-
- cargoSha256 = "1rsywa61z0f3b0vnsjrbhsg30dgnd248wnhpgy40vd54kqwg4amk";
-
- meta = with stdenv.lib; {
- description = ''
- Tool that allows you to rapidly choose a specific window directly
- without having to use the mouse or directional keyboard navigation.
- '';
- maintainers = with maintainers; [ synthetica ];
- platforms = platforms.linux;
- license = licenses.mit;
- homepage = https://github.com/svenstaro/wmfocus;
- };
-}
diff --git a/pkgs/wmfocus/metadata.nix b/pkgs/wmfocus/metadata.nix
deleted file mode 100644
index f644318..0000000
--- a/pkgs/wmfocus/metadata.nix
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- rev = "c8a5cfcb91a5e283cadb044f317de39c08bca115";
- sha256 = "1b8px6p9k1l2rxqcgj88msvk77qj0p6idz91ffybd11glxx07kad";
- revdate = "2019-02-07T08:09:19Z";
-}
diff --git a/update.sh b/update.sh
index 687e13b..5217511 100755
--- a/update.sh
+++ b/update.sh
@@ -56,7 +56,6 @@ update "pkgs/waybox" "wizbright" "waybox" "master"
update "pkgs/wl-clipboard" "bugaevc" "wl-clipboard" "master"
# i3-related
-update "pkgs/wmfocus" "svenstaro" "wmfocus" "master"
update "pkgs/i3status-rust" "greshake" "i3status-rust" "master"
# update README.md