summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kplotting.nix
blob: c4c3067034badffa2a51e86086ea7b34ae3c8e6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ mkDerivation, lib
, extra-cmake-modules, qttools, qtbase
}:

mkDerivation {
  name = "kplotting";
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [ qtbase qttools ];
  outputs = [ "out" "dev" ];
}