mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-25 13:35:13 +00:00
19 lines
399 B
Nix
19 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"];
|
|
}
|