15 lines
204 B
Nix
15 lines
204 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
ddcutil,
|
|
qtwayland,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "powerdevil";
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [
|
|
ddcutil
|
|
qtwayland
|
|
];
|
|
}
|