mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
20 lines
498 B
Nix
20 lines
498 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
qtsensors,
|
|
plasma-workspace,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "plasma-mobile";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [qtsensors];
|
|
postFixup = ''
|
|
substituteInPlace "$out/share/wayland-sessions/plasma-mobile.desktop" \
|
|
--replace-fail \
|
|
"$out/libexec/plasma-dbus-run-session-if-needed" \
|
|
"${plasma-workspace}/libexec/plasma-dbus-run-session-if-needed"
|
|
'';
|
|
passthru.providedSessions = [ "plasma-mobile" ];
|
|
}
|