summary refs log blame commit diff
path: root/pkgs/applications/kde/kalzium.nix
blob: 5bb51a6b4e1dd9a9055537e1b413a0ecc55661d4 (plain) (tree)

























                                                                                                                                     
{ 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
  ];
}