about summary refs log tree commit diff
path: root/nixpkgs/pkgs/kde/plasma/discover/default.nix
blob: d25a4fc6ea9b3fea9281232eb184e2e1df422a0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  mkKdeDerivation,
  qtwebview,
  pkg-config,
  discount,
  flatpak,
  fwupd,
}:
mkKdeDerivation {
  pname = "discover";

  extraNativeBuildInputs = [pkg-config];
  extraBuildInputs = [qtwebview discount flatpak fwupd];

  # The PackageKit backend doesn't work for us and causes Discover
  # to freak out when loading. Disable it to not confuse users.
  excludeDependencies = ["packagekit-qt"];
}