Unverified Commit 4c501ed5 authored by K900's avatar K900 Committed by GitHub
Browse files

qmllint hook 3: the hookening (#318190)

parents 938420f0 47b508b2
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -16,5 +16,8 @@ mkKdeDerivation {
    qttools
  ];
  extraPropagatedBuildInputs = [ kcmutils ];

  dontQmlLint = true; # weird namespace setup

  meta.mainProgram = "knewstuff-dialog6";
}
+2 −0
Original line number Diff line number Diff line
{
  mkKdeDerivation,
  qtdeclarative,
  kirigami,
}:
mkKdeDerivation {
  pname = "kquickcharts";

  extraBuildInputs = [ qtdeclarative ];
  extraPropagatedBuildInputs = [ kirigami ];
}
+3 −0
Original line number Diff line number Diff line
{
  lib,
  mkKdeDerivation,
  libkcompactdisc,
  cdparanoia,
  flac,
  libogg,
@@ -20,6 +21,8 @@ mkKdeDerivation {
  ];

  extraBuildInputs = [
    libkcompactdisc

    cdparanoia
    flac
    libogg
+3 −0
Original line number Diff line number Diff line
@@ -12,4 +12,7 @@ mkKdeDerivation {
    qtsvg
    libplasma
  ];

  # FIXME: not sure why this is failing
  dontQmlLint = true;
}
+7 −0
Original line number Diff line number Diff line
@@ -3,6 +3,8 @@
  qt5compat,
  qtdeclarative,
  qgpgme,
  kirigami,
  qtwebengine,
}:
mkKdeDerivation {
  pname = "mimetreeparser";
@@ -12,4 +14,9 @@ mkKdeDerivation {
    qtdeclarative
    qgpgme
  ];

  extraPropagatedBuildInputs = [
    kirigami
    qtwebengine
  ];
}
Loading