28 lines
305 B
Nix
28 lines
305 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 ];
|
|
};
|
|
}
|