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