aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/kde/kalzium.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/kde/kalzium.nix')
-rw-r--r--nixpkgs/pkgs/applications/kde/kalzium.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/kde/kalzium.nix b/nixpkgs/pkgs/applications/kde/kalzium.nix
new file mode 100644
index 00000000000..5bb51a6b4e1
--- /dev/null
+++ b/nixpkgs/pkgs/applications/kde/kalzium.nix
@@ -0,0 +1,26 @@
+{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, openbabel, avogadro, qtscript, kparts, kplotting, kunitconversion }:
+
+mkDerivation {
+ name = "kalzium";
+ meta = with lib; {
+ homepage = "https://kde.org/applications/en/utilities/org.kde.kalzium";
+ description = "Kalzium is a program that shows you the Periodic Table of Elements";
+ maintainers = with maintainers; [ freezeboy ];
+ license = licenses.gpl2Plus;
+ platforms = platforms.linux;
+ };
+ nativeBuildInputs = [
+ extra-cmake-modules
+ ];
+ buildInputs = [
+ qtscript
+ #avogadro
+ kdoctools
+ ki18n
+ kio
+ openbabel
+ kparts
+ kplotting
+ kunitconversion
+ ];
+}