nixpkgs/pkgs/development/libraries/kde-frameworks/kirigami2.nix
K900 6edd6f71c7 treewide: clean up all qttranslations workarounds
There are two kinds of changes here:
- removing explicit qttranslations path hardcoding from applications that were patched to do it
- replacing qttranslations in buildInputs with qttools for packages that really depend on the latter

After this, qttranslation is never used outside Qt itself, as it should.
2023-08-15 22:11:39 +03:00

9 lines
283 B
Nix

{ mkDerivation, extra-cmake-modules, qtbase, qtquickcontrols2, qtgraphicaleffects, qttools }:
mkDerivation {
pname = "kirigami2";
nativeBuildInputs = [ extra-cmake-modules qttools ];
buildInputs = [ qtbase qtquickcontrols2 qtgraphicaleffects ];
outputs = [ "out" "dev" ];
}