summary refs log tree commit diff
path: root/pkgs/development/libraries/kirigami/v2.nix
blob: 7dc6e799bcf8480e7379a2aaf3710480c0e3fb40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, cmake, ecm, pkgconfig, plasma-framework, qtbase, qtquickcontrols2 }:

stdenv.mkDerivation rec {
  pname = "kirigami";
  version = "1.90.0";
  name = "${pname}2-${version}";

  src = fetchurl {
    url = "mirror://kde/unstable/${pname}/${pname}-${version}.tar.xz";
    sha256 = "a5ca094a60d1cc48116cbed07bbe68be016773d2488a91e278859c90f59e64a8";
  };

  buildInputs = [ qtbase qtquickcontrols2 plasma-framework ];

  nativeBuildInputs = [ cmake pkgconfig ecm ];

  meta = with stdenv.lib; {
    license = licenses.lgpl2;
    homepage = http://www.kde.org;
    maintainers = with maintainers; [ ttuegel peterhoeg ];
    platforms = platforms.unix;
    broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
  };
}