mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
a258077b2e
Fixes #298092
18 lines
399 B
Nix
18 lines
399 B
Nix
{
|
|
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"];
|
|
}
|