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

mkDerivation {
  name = "kplotting";
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
    broken = builtins.compareVersions qtbase.version "5.6.0" < 0;
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ qtbase ];
}