openvswitch: generalize builder
[NixPkgs.git] / pkgs / data / themes / kde2 / default.nix
blob1404a6ca86ec0c81e6e5bf0a347121edfb68fdc2
1 { lib, fetchFromGitHub, mkDerivation
2 , cmake, extra-cmake-modules
3 , qtbase, kcoreaddons, kdecoration
4 }:
6 mkDerivation rec {
7   pname = "kde2-decoration";
8   version = "1.1";
10   src = fetchFromGitHub {
11     owner = "repos-holder";
12     repo = "kdecoration2-kde2";
13     rev = version;
14     sha256 = "y2q1j36EURJc7k1huqhEH1Z82PnVSKlfx20bpQWY28c=";
15   };
17   outputs = [ "out" "dev" ];
19   nativeBuildInputs = [ cmake extra-cmake-modules ];
21   buildInputs = [ qtbase kcoreaddons kdecoration ];
23   meta = with lib; {
24     description = "KDE 2 window decoration ported to Plasma 5";
25     homepage = "https://github.com/repos-holder/kdecoration2-kde2";
26     license = licenses.bsd2;
27     platforms = platforms.linux;
28     maintainers = with maintainers; [ ];
29   };