depot/third_party/nixpkgs/pkgs/development/libraries/qt-5/modules/qtpim.nix

28 lines
286 B
Nix
Raw Normal View History

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