aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/kde/ksystemlog.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/kde/ksystemlog.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/kde/ksystemlog.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/kde/ksystemlog.nix b/infra/libkookie/nixpkgs/pkgs/applications/kde/ksystemlog.nix
new file mode 100644
index 000000000000..bec92d55966d
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/applications/kde/ksystemlog.nix
@@ -0,0 +1,17 @@
+{
+ mkDerivation, lib,
+ extra-cmake-modules, gettext, kdoctools,
+ karchive, kconfig, kio
+}:
+
+mkDerivation {
+ name = "ksystemlog";
+
+ nativeBuildInputs = [ extra-cmake-modules gettext kdoctools ];
+ propagatedBuildInputs = [ karchive kconfig kio ];
+
+ meta = with lib; {
+ license = with licenses; [ gpl2 ];
+ maintainers = with maintainers; [ peterhoeg ];
+ };
+}