summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-10-06 21:18:19 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-10-06 21:18:19 +0200
commit6ef9b308ef1d0f9b8dbcd8ea9839945ee33794cf (patch)
tree0dfd8a8b7960e18c10e2a05be70c8aa0a5966236
parentc327d2b7ac911fb7ec754bdc5c85c6a215f6b7ce (diff)
downloadnixpkgs-6ef9b308ef1d0f9b8dbcd8ea9839945ee33794cf.tar
nixpkgs-6ef9b308ef1d0f9b8dbcd8ea9839945ee33794cf.tar.gz
nixpkgs-6ef9b308ef1d0f9b8dbcd8ea9839945ee33794cf.tar.bz2
nixpkgs-6ef9b308ef1d0f9b8dbcd8ea9839945ee33794cf.tar.lz
nixpkgs-6ef9b308ef1d0f9b8dbcd8ea9839945ee33794cf.tar.xz
nixpkgs-6ef9b308ef1d0f9b8dbcd8ea9839945ee33794cf.tar.zst
nixpkgs-6ef9b308ef1d0f9b8dbcd8ea9839945ee33794cf.zip
plasma5Packages.kosmindoormap: init
-rw-r--r--pkgs/applications/kde/default.nix1
-rw-r--r--pkgs/applications/kde/kosmindoormap.nix30
2 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/applications/kde/default.nix b/pkgs/applications/kde/default.nix
index a3d40c53868..a1522522764 100644
--- a/pkgs/applications/kde/default.nix
+++ b/pkgs/applications/kde/default.nix
@@ -181,6 +181,7 @@ let
       kontactinterface = callPackage ./kontactinterface.nix {};
       kopeninghours = callPackage ./kopeninghours.nix {};
       korganizer = callPackage ./korganizer.nix {};
+      kosmindoormap = callPackage ./kosmindoormap.nix {};
       kpat = callPackage ./kpat.nix {};
       kpimtextedit = callPackage ./kpimtextedit.nix {};
       kpkpass = callPackage ./kpkpass.nix {};
diff --git a/pkgs/applications/kde/kosmindoormap.nix b/pkgs/applications/kde/kosmindoormap.nix
new file mode 100644
index 00000000000..529aac48da7
--- /dev/null
+++ b/pkgs/applications/kde/kosmindoormap.nix
@@ -0,0 +1,30 @@
+{ mkDerivation
+, lib
+, bison
+, extra-cmake-modules
+, flex
+, ki18n
+, kopeninghours
+, kpublictransport
+}:
+
+mkDerivation {
+  pname = "kosmindoormap";
+  outputs = [ "out" "dev" ];
+
+  nativeBuildInputs = [
+    bison
+    extra-cmake-modules
+    flex
+  ];
+
+  buildInputs = [
+    ki18n
+    kopeninghours
+    kpublictransport
+  ];
+
+  meta = {
+    license = with lib.licenses; [ bsd2 bsd3 cc0 lgpl2Plus lgpl3Plus mit odbl ];
+  };
+}