summary refs log tree commit diff
path: root/pkgs/applications/misc/dmenu
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2017-12-21 20:16:19 +0400
committerzimbatm <zimbatm@zimbatm.com>2017-12-21 16:16:19 +0000
commitb9851a975e8255f8799aed3f4efaa399e19ea733 (patch)
treed9f53a0bcca76261cf0ffccdd03125e096c7c5a3 /pkgs/applications/misc/dmenu
parent9e119825f3513e84a22b97e50343c0bc323d11eb (diff)
downloadnixpkgs-b9851a975e8255f8799aed3f4efaa399e19ea733.tar
nixpkgs-b9851a975e8255f8799aed3f4efaa399e19ea733.tar.gz
nixpkgs-b9851a975e8255f8799aed3f4efaa399e19ea733.tar.bz2
nixpkgs-b9851a975e8255f8799aed3f4efaa399e19ea733.tar.lz
nixpkgs-b9851a975e8255f8799aed3f4efaa399e19ea733.tar.xz
nixpkgs-b9851a975e8255f8799aed3f4efaa399e19ea733.tar.zst
nixpkgs-b9851a975e8255f8799aed3f4efaa399e19ea733.zip
Make less known wayland compositors usable (#32285)
* bemenu: init at 2017-02-14

* velox: 2015-11-03 -> 2017-07-04

* orbment, velox: don't expose subprojects

the development of orbment and velox got stuck
their subprojects (bemenu, dmenu-wayland, st-wayland) don't work correctly outside of parent projects
so hide them to not confuse people
swc and wld libraries are unpopular and unlike wlc are not used by anything except velox

* pythonPackages.pydbus: init at 0.6.0

* way-cooler: 0.5.2 -> 0.6.2

* nixos/way-cooler: add module

* dconf module: use for wayland

non-invasive approach for #31293
see discussion at #32210

* sway: embed LD_LIBRARY_PATH for #32755

* way-cooler: switch from buildRustPackage to buildRustCrate #31150
Diffstat (limited to 'pkgs/applications/misc/dmenu')
-rw-r--r--pkgs/applications/misc/dmenu/wayland.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/applications/misc/dmenu/wayland.nix b/pkgs/applications/misc/dmenu/wayland.nix
deleted file mode 100644
index 340e8f16164..00000000000
--- a/pkgs/applications/misc/dmenu/wayland.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{stdenv, fetchurl #, libX11, libXinerama, enableXft, libXft, zlib
-, swc, wld, wayland, libxkbcommon, pixman, fontconfig
-}:
-
-with stdenv.lib;
-
-stdenv.mkDerivation rec {
-  name = "dmenu-wayland-${version}";
-  version = "git-2017-04-07";
-  rev = "f385d9d18813071b4b4257bf8d4d572daeda0e70";
-
-  src = fetchurl {
-    url = "https://github.com/michaelforney/dmenu/archive/${rev}.tar.gz";
-    sha256 = "0y1jvh2815c005ns0bsjxsmz82smw22n6jsfg2g03a1pacakp6ys";
-  };
-
-  buildInputs = [ swc wld wayland libxkbcommon pixman fontconfig ];
-
-  postPatch = ''
-    sed -ri -e 's!\<(dmenu|dmenu_path)\>!'"$out/bin"'/&!g' dmenu_run
-  '';
-
-  preConfigure = [
-    ''sed -i "s@PREFIX = /usr/local@PREFIX = $out@g; s@/usr/share/swc@${swc}/share/swc@g" config.mk''
-  ];
-
-  meta = {
-      description = "A generic, highly customizable, and efficient menu for the X Window System";
-      homepage = http://tools.suckless.org/dmenu;
-      license = stdenv.lib.licenses.mit;
-      maintainers = with stdenv.lib.maintainers; [ ];
-      platforms = with stdenv.lib.platforms; all;
-  };
-}