587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
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"];
|
|
}
|