28 lines
286 B
Nix
28 lines
286 B
Nix
|
{ qtModule
|
||
|
, lib
|
||
|
, qtbase
|
||
|
, qtdeclarative
|
||
|
}:
|
||
|
|
||
|
qtModule {
|
||
|
pname = "qtpim";
|
||
|
|
||
|
outputs = [
|
||
|
"out"
|
||
|
"dev"
|
||
|
];
|
||
|
|
||
|
qtInputs = [
|
||
|
qtbase
|
||
|
qtdeclarative
|
||
|
];
|
||
|
|
||
|
qmakeFlags = [
|
||
|
"CONFIG+=git_build"
|
||
|
];
|
||
|
|
||
|
meta = {
|
||
|
maintainers = with lib.maintainers; [ OPNA2608 ];
|
||
|
};
|
||
|
}
|