kalzium: init at 20.04.3
This commit is contained in:
parent
3be794aef3
commit
ef279759b6
3 changed files with 28 additions and 1 deletions
|
@ -92,6 +92,7 @@ let
|
|||
kaddressbook = callPackage ./kaddressbook.nix {};
|
||||
kalarm = callPackage ./kalarm.nix {};
|
||||
kalarmcal = callPackage ./kalarmcal.nix {};
|
||||
kalzium = callPackage ./kalzium.nix {};
|
||||
kapptemplate = callPackage ./kapptemplate.nix { };
|
||||
kate = callPackage ./kate.nix {};
|
||||
katomic = callPackage ./katomic.nix {};
|
||||
|
|
26
pkgs/applications/kde/kalzium.nix
Normal file
26
pkgs/applications/kde/kalzium.nix
Normal file
|
@ -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
|
||||
];
|
||||
}
|
|
@ -21052,7 +21052,7 @@ in
|
|||
|
||||
inherit (kdeApplications)
|
||||
akonadi akregator ark bomber bovo dolphin dragon elisa ffmpegthumbs filelight granatier gwenview k3b
|
||||
kaddressbook kapptemplate kate katomic kbounce kcachegrind kcalc kcharselect kcolorchooser kdenlive kdf kdialog
|
||||
kaddressbook kalzium kapptemplate kate katomic kbounce kcachegrind kcalc kcharselect kcolorchooser kdenlive kdf kdialog
|
||||
keditbookmarks kfind kfloppy kget kgpg khelpcenter kig kigo kleopatra kmag kmail kmines kmix kmplot kolourpaint kompare konsole yakuake
|
||||
kpkpass kitinerary kontact korganizer krdc krfb ksquares ksystemlog ktouch kwalletmanager kwave marble minuet okular picmi spectacle;
|
||||
|
||||
|
|
Loading…
Reference in a new issue