nixpkgs/pkgs/desktops/plasma-5/plasma-bigscreen.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
906 B
Nix
Raw Normal View History

{ mkDerivation
, extra-cmake-modules
, kactivities
, kactivities-stats
, plasma-framework
, ki18n
, kirigami2
, kdeclarative
, kcmutils
, knotifications
, kio
, kwayland
, kwindowsystem
, plasma-workspace
, qtmultimedia
2022-09-15 16:23:51 +00:00
}:
mkDerivation {
pname = "plasma-bigscreen";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
kactivities
kactivities-stats
plasma-framework
ki18n
kirigami2
kdeclarative
kcmutils
knotifications
kio
kwayland
kwindowsystem
plasma-workspace
qtmultimedia
];
postPatch = ''
substituteInPlace bin/plasma-bigscreen-wayland.in \
--replace @KDE_INSTALL_FULL_LIBEXECDIR@ "${plasma-workspace}/libexec"
'';
preFixup = ''
wrapQtApp $out/bin/plasma-bigscreen-x11
wrapQtApp $out/bin/plasma-bigscreen-wayland
'';
passthru.providedSessions = [ "plasma-bigscreen-x11" "plasma-bigscreen-wayland" ];
}