mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
17 lines
235 B
Nix
17 lines
235 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
qt5compat,
|
|
audit,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "ksystemlog";
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [
|
|
qt5compat
|
|
audit
|
|
];
|
|
meta.mainProgram = "ksystemlog";
|
|
}
|