nixpkgs/pkgs/applications/kde/ksystemlog.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
461 B
Nix
Raw Normal View History

2018-03-23 06:16:47 +00:00
{
mkDerivation, lib,
extra-cmake-modules, gettext, kdoctools,
karchive, kconfig, kio
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "ksystemlog";
2018-03-23 06:16:47 +00:00
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools ];
propagatedBuildInputs = [ karchive kconfig kio ];
meta = with lib; {
homepage = "https://apps.kde.org/ksystemlog/";
description = "System log viewer";
2018-03-23 06:16:47 +00:00
license = with licenses; [ gpl2 ];
maintainers = with maintainers; [ peterhoeg ];
};
}