1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/kde/kcalc.nix

20 lines
472 B
Nix
Raw Normal View History

{
2017-05-16 16:56:41 +01:00
mkDerivation, lib,
2017-05-17 20:26:11 +01:00
extra-cmake-modules, kdoctools,
2019-04-22 08:32:37 +01:00
gmp, kconfig, kconfigwidgets, kcrash, kguiaddons, ki18n, kinit,
2019-08-16 13:11:09 +01:00
knotifications, kxmlgui, mpfr,
}:
2017-05-16 16:56:41 +01:00
mkDerivation {
name = "kcalc";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.fridh ];
};
2017-05-17 20:26:11 +01:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-06-21 14:45:30 +01:00
buildInputs = [
2019-04-22 08:32:37 +01:00
gmp kconfig kconfigwidgets kcrash kguiaddons ki18n kinit knotifications
2019-08-16 13:11:09 +01:00
kxmlgui mpfr
2017-05-16 16:56:41 +01:00
];
}