summary refs log tree commit diff
path: root/pkgs/development/libraries/kirigami/v2.nix
blob: 8476eebfd501f1bfc2973b63ce8271d86cae5f38 (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
{ 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;
  };
}