summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2021-06-26 19:00:42 +0200
committerGitHub <noreply@github.com>2021-06-26 19:00:42 +0200
commitc47b2be75e41212699e34b83178faee6661f5b3f (patch)
treee57e25fdbabe5ce2be7f02e1d3e19ed49c3a3e1a /pkgs/development/libraries
parente174ca667a8cffae59771f5f2fc4aaaf266dc77c (diff)
parentda5f8ac977b86bb5e12e3d98af6cf3c2337d524b (diff)
downloadnixpkgs-c47b2be75e41212699e34b83178faee6661f5b3f.tar
nixpkgs-c47b2be75e41212699e34b83178faee6661f5b3f.tar.gz
nixpkgs-c47b2be75e41212699e34b83178faee6661f5b3f.tar.bz2
nixpkgs-c47b2be75e41212699e34b83178faee6661f5b3f.tar.lz
nixpkgs-c47b2be75e41212699e34b83178faee6661f5b3f.tar.xz
nixpkgs-c47b2be75e41212699e34b83178faee6661f5b3f.tar.zst
nixpkgs-c47b2be75e41212699e34b83178faee6661f5b3f.zip
Merge pull request #128220 from primeos/wio
wlroots_0_13: drop
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/wlroots/0.13.nix55
1 files changed, 0 insertions, 55 deletions
diff --git a/pkgs/development/libraries/wlroots/0.13.nix b/pkgs/development/libraries/wlroots/0.13.nix
deleted file mode 100644
index f2343e73c58..00000000000
--- a/pkgs/development/libraries/wlroots/0.13.nix
+++ /dev/null
@@ -1,55 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, wayland-scanner
-, libGL, wayland, wayland-protocols, libinput, libxkbcommon, pixman
-, xcbutilwm, libX11, libcap, xcbutilimage, xcbutilerrors, mesa
-, libpng, ffmpeg, libuuid, xcbutilrenderutil, xwayland
-}:
-
-stdenv.mkDerivation rec {
-  pname = "wlroots";
-  version = "0.13.0";
-
-  src = fetchFromGitHub {
-    owner = "swaywm";
-    repo = "wlroots";
-    rev = version;
-    sha256 = "01plhbnsp5yg18arz0v8fr0pr9l4w4pdzwkg9px486qdvb3s1vgy";
-  };
-
-  # $out for the library and $examples for the example programs (in examples):
-  outputs = [ "out" "examples" ];
-
-  nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ];
-
-  buildInputs = [
-    libGL wayland wayland-protocols libinput libxkbcommon pixman
-    xcbutilwm libX11 libcap xcbutilimage xcbutilerrors mesa
-    libpng ffmpeg libuuid xcbutilrenderutil xwayland
-  ];
-
-  mesonFlags = [ "-Dlogind-provider=systemd" "-Dlibseat=disabled" ];
-
-  postFixup = ''
-    # Install ALL example programs to $examples:
-    # screencopy dmabuf-capture input-inhibitor layer-shell idle-inhibit idle
-    # screenshot output-layout multi-pointer rotation tablet touch pointer
-    # simple
-    mkdir -p $examples/bin
-    cd ./examples
-    for binary in $(find . -executable -type f -printf '%P\n' | grep -vE '\.so'); do
-      cp "$binary" "$examples/bin/wlroots-$binary"
-    done
-  '';
-
-  meta = with lib; {
-    description = "A modular Wayland compositor library";
-    longDescription = ''
-      Pluggable, composable, unopinionated modules for building a Wayland
-      compositor; or about 50,000 lines of code you were going to write anyway.
-    '';
-    inherit (src.meta) homepage;
-    changelog = "https://github.com/swaywm/wlroots/releases/tag/${version}";
-    license     = licenses.mit;
-    platforms   = platforms.linux;
-    maintainers = with maintainers; [ primeos synthetica ];
-  };
-}