about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/wayqt/default.nix
blob: 47e11c9f10d0a024ea4e586957d08011440250c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{ stdenv
, lib
, fetchFromGitLab
, substituteAll
, meson
, pkg-config
, qttools
, ninja
, qtbase
, qtwayland
, wayland
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "wayqt";
  version = "0.2.0";

  src = fetchFromGitLab {
    owner = "desktop-frameworks";
    repo = "wayqt";
    rev = "v${finalAttrs.version}";
    hash = "sha256-qlRRkqhKlcsd9lzlqfE0V0gjudELyENu4IH1NfO/+pI=";
  };

  patches = [
    # qmake get qtbase's path, but wayqt need qtwayland
    (substituteAll {
      src = ./fix-qtwayland-header-path.diff;
      qtWaylandPath = "${qtwayland}/include";
    })
  ];

  nativeBuildInputs = [
    meson
    pkg-config
    qttools
    ninja
  ];

  buildInputs = [
    qtbase
    qtwayland
    wayland
  ];

  mesonFlags = [
    "-Duse_qt_version=qt6"
  ];

  dontWrapQtApps = true;

  outputs = [ "out" "dev" ];

  meta = {
    homepage = "https://gitlab.com/desktop-frameworks/wayqt";
    description = "Qt-based library to handle Wayland and Wlroots protocols to be used with any Qt project";
    maintainers = with lib.maintainers; [ rewine ];
    platforms = lib.platforms.linux;
    license = lib.licenses.mit;
  };
})