24 lines
673 B
Nix
24 lines
673 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|