peruse: init at 1.1

Includes kirigami at 1.1.0
This commit is contained in:
Peter Hoeg
2016-10-17 17:32:05 +08:00
parent 09e4b78b48
commit 2a4098d74c
3 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{ stdenv, fetchurl, cmake, ecm, pkgconfig, plasma-framework, qtbase, qtquickcontrols }:
stdenv.mkDerivation rec {
pname = "kirigami";
version = "1.1.0";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://kde/stable/${pname}/${name}.tar.xz";
sha256 = "1p9ydggwbyfdgwmvyc8004sk9mfshlg9b83lzvz9qk3a906ayxv6";
};
buildInputs = [ qtbase qtquickcontrols 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;
};
}