24 lines
675 B
Nix
24 lines
675 B
Nix
{ stdenv, fetchurl, cmake, extra-cmake-modules, 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 extra-cmake-modules ];
|
|
|
|
meta = with stdenv.lib; {
|
|
license = licenses.lgpl2;
|
|
homepage = http://www.kde.org;
|
|
maintainers = with maintainers; [ ttuegel peterhoeg ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|