2022-06-16 17:23:12 +00:00
|
|
|
{ qtModule
|
|
|
|
, stdenv
|
|
|
|
, lib
|
|
|
|
, qtbase
|
|
|
|
, qtdeclarative
|
2022-11-27 09:42:12 +00:00
|
|
|
, substituteAll
|
2022-06-16 17:23:12 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
qtModule {
|
|
|
|
pname = "qttools";
|
|
|
|
qtInputs = [ qtbase qtdeclarative ];
|
2022-11-27 09:42:12 +00:00
|
|
|
patches = [
|
|
|
|
../patches/qttools-paths.patch
|
|
|
|
];
|
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
|
|
"-DNIX_OUTPUT_DEV=\"${placeholder "dev"}\""
|
|
|
|
];
|
2022-06-16 17:23:12 +00:00
|
|
|
}
|