9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
27 lines
286 B
Nix
27 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 ];
|
|
};
|
|
}
|