Commit 9e4acec7 authored by K900's avatar K900
Browse files

kdePackages: fix some disappeared dependencies

CMake cross continues to be very scuffed.
parent 3ba92f89
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@ OK_MISSING_BY_PACKAGE = {
    "discover": {
        "rpm-ostree-1",  # we don't have rpm-ostree (duh)
        "Snapd",  # we don't have snaps and probably never will
        "packagekitqt6",  # intentionally disabled
    },
    "elisa": {
        "UPNPQT",  # upstream says it's broken
@@ -36,6 +37,9 @@ OK_MISSING_BY_PACKAGE = {
        "Sphinx",  # only used for docs, bloats closure size
        "QCollectionGenerator"
    },
    "gwenview": {
        "Tiff",  # duplicate?
    },
    "kio-extras-kf5": {
        "KDSoapWSDiscoveryClient",  # actually vendored on KF5 version
    },
+1 −2
Original line number Diff line number Diff line
@@ -26,9 +26,8 @@ mkKdeDerivation rec {
  extraNativeBuildInputs = [
    rustPlatform.cargoSetupHook
    cargo
    corrosion
    rustc
  ];

  extraBuildInputs = [xapian];
  extraBuildInputs = [corrosion xapian];
}
+1 −2
Original line number Diff line number Diff line
@@ -25,9 +25,8 @@ mkKdeDerivation rec {
  extraNativeBuildInputs = [
    rustPlatform.cargoSetupHook
    cargo
    corrosion
    rustc
  ];

  extraBuildInputs = [qtsvg qtwebengine qcoro];
  extraBuildInputs = [qtsvg qtwebengine corrosion qcoro];
}
+2 −2
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
mkKdeDerivation {
  pname = "ghostwriter";

  extraNativeBuildInputs = [pkg-config kdoctools];
  extraBuildInputs = [qtsvg qttools qtwebchannel qtwebengine qt5compat hunspell];
  extraNativeBuildInputs = [pkg-config];
  extraBuildInputs = [qtsvg qttools qtwebchannel qtwebengine qt5compat kdoctools hunspell];
  meta.mainProgram = "ghostwriter";
}
+1 −2
Original line number Diff line number Diff line
@@ -8,7 +8,6 @@
mkKdeDerivation {
  pname = "kcalc";

  extraNativeBuildInputs = [kdoctools];
  extraBuildInputs = [qt5compat gmp mpfr];
  extraBuildInputs = [qt5compat gmp mpfr kdoctools];
  meta.mainProgram = "kcalc";
}
Loading