mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
2e6bf42a22
There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
32 lines
810 B
Nix
32 lines
810 B
Nix
{ stdenv, fetchFromGitHub, mkDerivation
|
|
, cmake, extra-cmake-modules
|
|
, qtbase, kcoreaddons, kdecoration }:
|
|
|
|
let
|
|
version = "2017-03-15";
|
|
in mkDerivation rec {
|
|
pname = "kde2-decoration";
|
|
inherit 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;
|
|
maintainers = with maintainers; [ gnidorah ];
|
|
};
|
|
}
|