mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
27 lines
651 B
Nix
27 lines
651 B
Nix
{ 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";
|
|
mainProgram = "kalzium";
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
qtscript
|
|
#avogadro
|
|
kdoctools
|
|
ki18n
|
|
kio
|
|
openbabel
|
|
kparts
|
|
kplotting
|
|
kunitconversion
|
|
];
|
|
}
|