13 lines
186 B
Nix
13 lines
186 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
pkg-config,
|
||
|
qt5compat,
|
||
|
audit,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "ksystemlog";
|
||
|
|
||
|
extraNativeBuildInputs = [pkg-config];
|
||
|
extraBuildInputs = [qt5compat audit];
|
||
|
}
|