about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kosmindoormap.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/kde/kosmindoormap.nix')
-rw-r--r--nixpkgs/pkgs/applications/kde/kosmindoormap.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/kde/kosmindoormap.nix b/nixpkgs/pkgs/applications/kde/kosmindoormap.nix
new file mode 100644
index 000000000000..529aac48da7a
--- /dev/null
+++ b/nixpkgs/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 ];
+  };
+}