lol

kdePackages.powerdevil: Add ddcutil as build input

This enables brightness control over DDC/CI for external monitors.

Mats cb08d30f 2768c7d0

+5 -1
+5 -1
pkgs/kde/plasma/powerdevil/default.nix
··· 1 { 2 mkKdeDerivation, 3 pkg-config, 4 qtwayland, 5 }: 6 mkKdeDerivation { 7 pname = "powerdevil"; 8 9 extraNativeBuildInputs = [ pkg-config ]; 10 - extraBuildInputs = [ qtwayland ]; 11 }
··· 1 { 2 mkKdeDerivation, 3 pkg-config, 4 + ddcutil, 5 qtwayland, 6 }: 7 mkKdeDerivation { 8 pname = "powerdevil"; 9 10 extraNativeBuildInputs = [ pkg-config ]; 11 + extraBuildInputs = [ 12 + ddcutil 13 + qtwayland 14 + ]; 15 }