about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/ksystemlog.nix
blob: 1b78c16b49dddaa4ee725fdd88d7fcb0acd12484 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  mkDerivation, lib,
  extra-cmake-modules, gettext, kdoctools,
  karchive, kconfig, kio
}:

mkDerivation {
  pname = "ksystemlog";

  nativeBuildInputs = [ extra-cmake-modules gettext kdoctools ];
  propagatedBuildInputs = [ karchive kconfig kio ];

  meta = with lib; {
    homepage = "https://apps.kde.org/ksystemlog/";
    description = "System log viewer";
    license = with licenses; [ gpl2 ];
    maintainers = with maintainers; [ peterhoeg ];
  };
}