Merge pull request #33173 from medovuxa/kde2
kde2-decoration: init at 2017-03-15
This commit is contained in:
commit
aa5c7fb6f0
29
pkgs/misc/themes/kde2/default.nix
Normal file
29
pkgs/misc/themes/kde2/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -2936,6 +2936,8 @@ with pkgs;
|
|||||||
|
|
||||||
kdbplus = callPackage_i686 ../applications/misc/kdbplus { };
|
kdbplus = callPackage_i686 ../applications/misc/kdbplus { };
|
||||||
|
|
||||||
|
kde2-decoration = libsForQt5.callPackage ../misc/themes/kde2 { };
|
||||||
|
|
||||||
keepalived = callPackage ../tools/networking/keepalived { };
|
keepalived = callPackage ../tools/networking/keepalived { };
|
||||||
|
|
||||||
kexectools = callPackage ../os-specific/linux/kexectools { };
|
kexectools = callPackage ../os-specific/linux/kexectools { };
|
||||||
|
Loading…
Reference in New Issue
Block a user