nixpkgs/pkgs/applications/kde/kcalc.nix

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

23 lines
589 B
Nix
Raw Normal View History

{
2017-05-16 17:56:41 +02:00
mkDerivation, lib,
2017-05-17 21:26:11 +02:00
extra-cmake-modules, kdoctools,
2019-04-22 09:32:37 +02:00
gmp, kconfig, kconfigwidgets, kcrash, kguiaddons, ki18n, kinit,
2019-08-16 14:11:09 +02:00
knotifications, kxmlgui, mpfr,
}:
2017-05-16 17:56:41 +02:00
mkDerivation {
2020-12-25 00:05:07 +01:00
pname = "kcalc";
2017-05-16 17:56:41 +02:00
meta = {
homepage = "https://apps.kde.org/kcalc/";
description = "Scientific calculator";
mainProgram = "kcalc";
2017-05-16 17:56:41 +02:00
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.fridh ];
};
2017-05-17 21:26:11 +02:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-06-21 15:45:30 +02:00
buildInputs = [
2019-04-22 09:32:37 +02:00
gmp kconfig kconfigwidgets kcrash kguiaddons ki18n kinit knotifications
2019-08-16 14:11:09 +02:00
kxmlgui mpfr
2017-05-16 17:56:41 +02:00
];
}