mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
42 lines
727 B
Nix
42 lines
727 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, qtbase
|
|
, kfilemetadata
|
|
, kio
|
|
, ki18n
|
|
, kconfig
|
|
, kdbusaddons
|
|
, knotifications
|
|
, kpurpose
|
|
, krunner
|
|
, kwindowsystem
|
|
, kactivities
|
|
, plasma-workspace
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "plasma-browser-integration";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
qtbase
|
|
kfilemetadata
|
|
kio
|
|
ki18n
|
|
kconfig
|
|
kdbusaddons
|
|
knotifications
|
|
kpurpose
|
|
krunner
|
|
kwindowsystem
|
|
kactivities
|
|
plasma-workspace
|
|
];
|
|
|
|
meta = {
|
|
description = "Components necessary to integrate browsers into the Plasma Desktop";
|
|
mainProgram = "plasma-browser-integration-host";
|
|
homepage = "https://community.kde.org/Plasma/Browser_Integration";
|
|
};
|
|
}
|