nixpkgs/pkgs/applications/kde/kalzium.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
651 B
Nix
Raw Normal View History

2021-11-13 22:28:25 +00:00
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, openbabel, qtscript, kparts, kplotting, kunitconversion }:
2020-07-25 23:20:08 +00:00
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kalzium";
2020-07-25 23:20:08 +00:00
meta = with lib; {
2021-12-28 18:00:54 +00:00
homepage = "https://edu.kde.org/kalzium/";
description = "Program that shows you the Periodic Table of Elements";
mainProgram = "kalzium";
2020-07-25 23:20:08 +00:00
maintainers = with maintainers; [ freezeboy ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
qtscript
#avogadro
kdoctools
ki18n
kio
openbabel
kparts
kplotting
kunitconversion
];
}