mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 19:16:11 +00:00
12 lines
165 B
Nix
12 lines
165 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
libcap,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "powerdevil";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [libcap];
|
|
}
|