2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
27 lines
299 B
Nix
27 lines
299 B
Nix
{ qtModule
|
|
, lib
|
|
, qtbase
|
|
, qtdeclarative
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtpim";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
qtbase
|
|
qtdeclarative
|
|
];
|
|
|
|
qmakeFlags = [
|
|
"CONFIG+=git_build"
|
|
];
|
|
|
|
meta = {
|
|
maintainers = with lib.maintainers; [ OPNA2608 ];
|
|
};
|
|
}
|