Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 33 lines 532 B view raw
1{ 2 mkDerivation, 3 lib, 4 extra-cmake-modules, 5 gettext, 6 kdoctools, 7 karchive, 8 kconfig, 9 kio, 10}: 11 12mkDerivation { 13 pname = "ksystemlog"; 14 15 nativeBuildInputs = [ 16 extra-cmake-modules 17 gettext 18 kdoctools 19 ]; 20 propagatedBuildInputs = [ 21 karchive 22 kconfig 23 kio 24 ]; 25 26 meta = with lib; { 27 homepage = "https://apps.kde.org/ksystemlog/"; 28 description = "System log viewer"; 29 mainProgram = "ksystemlog"; 30 license = with licenses; [ gpl2 ]; 31 maintainers = with maintainers; [ peterhoeg ]; 32 }; 33}