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
commit 33a604f5fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,11 +1,15 @@
{
mkKdeDerivation,
pkg-config,
ddcutil,
qtwayland,
}:
mkKdeDerivation {
pname = "powerdevil";
extraNativeBuildInputs = [ pkg-config ];
extraBuildInputs = [ qtwayland ];
extraBuildInputs = [
ddcutil
qtwayland
];
}