mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
434cd1057f
* libsForQt5.qtpim: init at unstable-2020-11-02
* libsForQt5.qtpim: Move to pkgs/development/libraries/qt-5
* libsForQt5.qtpim: unstable-2020-11-02 -> unstable-2021-04-09
By try reverting Qt6 commits instead of pulling in Qt5-compatible ones
* Revert "libsForQt5.qtpim: unstable-2020-11-02 -> unstable-2021-04-09"
This reverts commit 9384825791
.
28 lines
286 B
Nix
28 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 ];
|
|
};
|
|
}
|