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

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