2018-03-23 07:16:47 +01:00
|
|
|
{
|
|
|
|
mkDerivation, lib,
|
|
|
|
extra-cmake-modules, gettext, kdoctools,
|
|
|
|
karchive, kconfig, kio
|
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation {
|
2020-12-25 00:05:07 +01:00
|
|
|
pname = "ksystemlog";
|
2018-03-23 07:16:47 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools ];
|
|
|
|
propagatedBuildInputs = [ karchive kconfig kio ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2021-09-18 11:48:23 +02:00
|
|
|
homepage = "https://apps.kde.org/ksystemlog/";
|
|
|
|
description = "System log viewer";
|
2024-03-19 03:14:51 +01:00
|
|
|
mainProgram = "ksystemlog";
|
2018-03-23 07:16:47 +01:00
|
|
|
license = with licenses; [ gpl2 ];
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
};
|
|
|
|
}
|