about summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-6/modules/qttools.nix
blob: 06ce64424d55763b5590186661b254beaac7a70e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ qtModule
, stdenv
, lib
, qtbase
, qtdeclarative
, substituteAll
}:

qtModule {
  pname = "qttools";
  qtInputs = [ qtbase qtdeclarative ];
  patches = [
    ../patches/qttools-paths.patch
  ];
  NIX_CFLAGS_COMPILE = [
    "-DNIX_OUTPUT_DEV=\"${placeholder "dev"}\""
  ];
}