kdePackages.powerdevil: Add ddcutil as build input (#351250)

This commit is contained in:
K900
2024-11-21 10:13:41 +03:00
committed by GitHub
+5 -1
View File
@@ -1,11 +1,15 @@
{
mkKdeDerivation,
pkg-config,
ddcutil,
qtwayland,
}:
mkKdeDerivation {
pname = "powerdevil";
extraNativeBuildInputs = [ pkg-config ];
extraBuildInputs = [ qtwayland ];
extraBuildInputs = [
ddcutil
qtwayland
];
}