about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kalzium.nix
blob: 045c9a3c8d6e3524564e9d4a2ffb7db366208a24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, openbabel, qtscript, kparts, kplotting, kunitconversion }:

mkDerivation {
  pname = "kalzium";
  meta = with lib; {
    homepage = "https://edu.kde.org/kalzium/";
    description = "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
  ];
}