about summary refs log tree commit diff
path: root/pkgs/applications/misc/st
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/st
parent9e119825f3513e84a22b97e50343c0bc323d11eb (diff)
downloadnixlib-b9851a975e8255f8799aed3f4efaa399e19ea733.tar
nixlib-b9851a975e8255f8799aed3f4efaa399e19ea733.tar.gz
nixlib-b9851a975e8255f8799aed3f4efaa399e19ea733.tar.bz2
nixlib-b9851a975e8255f8799aed3f4efaa399e19ea733.tar.lz
nixlib-b9851a975e8255f8799aed3f4efaa399e19ea733.tar.xz
nixlib-b9851a975e8255f8799aed3f4efaa399e19ea733.tar.zst
nixlib-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/st')
-rw-r--r--pkgs/applications/misc/st/wayland.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/applications/misc/st/wayland.nix b/pkgs/applications/misc/st/wayland.nix
deleted file mode 100644
index 69794b1cffbd..000000000000
--- a/pkgs/applications/misc/st/wayland.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ stdenv, fetchurl, pkgconfig, writeText
-, ncurses, wayland, wld, libxkbcommon, fontconfig, pixman
-, conf ? null, patches ? [] }:
-
-with stdenv.lib;
-
-stdenv.mkDerivation rec {
-  name = "st-wayland-${version}";
-  version = "git-2015-08-29";
-  rev = "61b47b76a09599c8093214e28c48938f5b424daa";
-
-  src = fetchurl {
-    url = "https://github.com/michaelforney/st/archive/${rev}.tar.gz";
-    sha256 = "7164da135f02405dba5ae3131dfd896e072df29ac6c0928f3b887beffb8a7d97";
-  };
-
-  inherit patches;
-
-  configFile = optionalString (conf!=null) (writeText "config.def.h" conf);
-  preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";
-
-  nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ ncurses wayland wld libxkbcommon fontconfig pixman ];
-
-  NIX_LDFLAGS = "-lfontconfig";
-
-  installPhase = ''
-    TERMINFO=$out/share/terminfo make install PREFIX=$out
-  '';
-
-  meta = {
-    homepage = http://st.suckless.org/;
-    license = licenses.mit;
-    maintainers = with maintainers; [ ];
-    platforms = with platforms; linux;
-  };
-}