about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kmplot.nix
blob: 9f1ab4d281190ed2e6a19f8ca535c839f6f46cfa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ mkDerivation, lib, extra-cmake-modules, kdoctools
, kcrash, kguiaddons, ki18n, kparts, kwidgetsaddons, kdbusaddons
}:

mkDerivation {
  pname = "kmplot";
  meta = {
    homepage = "https://apps.kde.org/kmplot/";
    description = "Mathematical function plotter";
    license = with lib.licenses; [ gpl2Plus fdl12Plus ];
    maintainers = [ lib.maintainers.orivej ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    kcrash kguiaddons ki18n kparts kwidgetsaddons kdbusaddons
  ];
}