nixpkgs/pkgs/applications/kde/ksystemlog.nix

18 lines
371 B
Nix
Raw Permalink 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; {
license = with licenses; [ gpl2 ];
maintainers = with maintainers; [ peterhoeg ];
};
}