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

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