summary refs log tree commit diff
path: root/pkgs/applications/kde/katomic.nix
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-07-26 01:12:33 +0200
committerfreezeboy <freezeboy@users.noreply.github.com>2020-08-21 10:04:17 +0200
commit308354570445315c2a56168821528b2cacca45bb (patch)
tree59e52074c51e1f224786ab0949b3b40dd95eccd4 /pkgs/applications/kde/katomic.nix
parent918550582154d7a018335fb3a9758d74ea1c4a9d (diff)
downloadnixpkgs-308354570445315c2a56168821528b2cacca45bb.tar
nixpkgs-308354570445315c2a56168821528b2cacca45bb.tar.gz
nixpkgs-308354570445315c2a56168821528b2cacca45bb.tar.bz2
nixpkgs-308354570445315c2a56168821528b2cacca45bb.tar.lz
nixpkgs-308354570445315c2a56168821528b2cacca45bb.tar.xz
nixpkgs-308354570445315c2a56168821528b2cacca45bb.tar.zst
nixpkgs-308354570445315c2a56168821528b2cacca45bb.zip
katomic: init at 20.04.3
Diffstat (limited to 'pkgs/applications/kde/katomic.nix')
-rw-r--r--pkgs/applications/kde/katomic.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/kde/katomic.nix b/pkgs/applications/kde/katomic.nix
new file mode 100644
index 00000000000..a1d0f12b6a1
--- /dev/null
+++ b/pkgs/applications/kde/katomic.nix
@@ -0,0 +1,22 @@
+{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames, knewstuff }:
+
+mkDerivation {
+  name = "katomic";
+  meta = with lib; {
+    homepage = "https://kde.org/applications/en/games/org.kde.katomic";
+    description = "KAtomic is a fun educational game built around molecular geometry";
+    maintainers = with maintainers; [ freezeboy ];
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
+  };
+  nativeBuildInputs = [
+    extra-cmake-modules
+  ];
+  buildInputs = [
+    knewstuff
+    libkdegames
+    kdoctools
+    ki18n
+    kio
+  ];
+}