
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.
9 lines
283 B
Nix
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" ];
|
|
}
|