a71eb02b76
GitOrigin-RevId: a115bb9bd56831941be3776c8a94005867f316a7
18 lines
276 B
Nix
18 lines
276 B
Nix
{ 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"}\""
|
|
];
|
|
}
|