qt6Packages.qwlroots: drop

This commit is contained in:
rewine
2026-02-07 12:40:31 +08:00
parent 0ba918e299
commit 8b4606b755
2 changed files with 0 additions and 79 deletions
@@ -1,75 +0,0 @@
{
stdenv,
lib,
fetchFromGitHub,
cmake,
pkg-config,
wrapQtAppsHook,
wayland-scanner,
qtbase,
wayland,
wayland-protocols,
wlr-protocols,
pixman,
libgbm,
vulkan-loader,
libinput,
libxcb-errors,
libxdmcp,
seatd,
wlroots,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "qwlroots";
version = "0.5.3";
src = fetchFromGitHub {
owner = "vioken";
repo = "qwlroots";
rev = finalAttrs.version;
hash = "sha256-ZyG0JGUlz/ubtwN5wYtC8qeYsPur+0kTkD7iIjHX7KU=";
};
nativeBuildInputs = [
cmake
pkg-config
wayland-scanner
];
buildInputs = [
qtbase
wayland
wayland-protocols
wlr-protocols
pixman
libgbm
vulkan-loader
libinput
libxdmcp
libxcb-errors
seatd
];
propagatedBuildInputs = [
wlroots
];
cmakeFlags = [
(lib.cmakeBool "PREFER_QT_5" (lib.versionOlder qtbase.version "6"))
];
dontWrapQtApps = true;
meta = {
description = "Qt and QML bindings for wlroots";
homepage = "https://github.com/vioken/qwlroots";
license = with lib.licenses; [
gpl3Only
lgpl3Only
asl20
];
platforms = wlroots.meta.platforms;
maintainers = with lib.maintainers; [ wineee ];
};
})
-4
View File
@@ -118,10 +118,6 @@ makeScopeWithSplicing' {
qtspell = callPackage ../development/libraries/qtspell { };
qwlroots = callPackage ../development/libraries/qwlroots {
wlroots = pkgs.wlroots_0_18;
};
qwt = callPackage ../development/libraries/qwt/default.nix { };
qxlsx = callPackage ../development/libraries/qxlsx { };