kde2-decoration: init at 2017-03-15

This commit is contained in:
medovuxa 2017-12-31 10:21:45 +03:00
parent 40a3d775a5
commit 99770e785a
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub
, cmake, extra-cmake-modules
, qtbase, kcoreaddons, kdecoration }:
let
version = "2017-03-15";
in stdenv.mkDerivation rec {
name = "kde2-decoration-${version}";
src = fetchFromGitHub {
owner = "repos-holder";
repo = "kdecoration2-kde2";
rev = "2a9cf18ac0646b3532d4db2dd28bd73c4c229783";
sha256 = "0kilw6sd3blvm6gx9w4w5ivkjfxlv6wnyivw46pwwvhgxqymkbxk";
};
enableParallelBuilding = true;
nativeBuildInputs = [ cmake extra-cmake-modules ];
buildInputs = [ qtbase kcoreaddons kdecoration ];
meta = with stdenv.lib; {
description = "KDE 2 window decoration ported to Plasma 5";
homepage = src.meta.homepage;
license = licenses.bsd2;
platforms = platforms.linux;
};
}

View File

@ -2930,6 +2930,8 @@ with pkgs;
kdbplus = callPackage_i686 ../applications/misc/kdbplus { };
kde2-decoration = libsForQt5.callPackage ../misc/themes/kde2 { };
keepalived = callPackage ../tools/networking/keepalived { };
kexectools = callPackage ../os-specific/linux/kexectools { };