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

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