summary refs log blame commit diff
path: root/pkgs/development/libraries/plasma-wayland-protocols/default.nix
blob: d749744d51ede13d263d56943ee4a585c8c6dbe7 (plain) (tree)
1
2
3
4
5
6
7
8
9


              





                                     
                     

                  
                                                                    
                                                                   









                                              
                                              

    
{ mkDerivation
, fetchurl
, lib
, extra-cmake-modules
, qtbase
}:

mkDerivation rec {
  pname = "plasma-wayland-protocols";
  version = "1.10.0";

  src = fetchurl {
    url = "mirror://kde/stable/${pname}/${pname}-${version}.tar.xz";
    sha256 = "sha256-MZSIZ8mgRhPm3g0jrfy8Ws7N3vCzn5hrNF7GwZcnNv4=";
  };

  nativeBuildInputs = [ extra-cmake-modules ];

  buildInputs = [ qtbase ];

  meta = {
    description = "Plasma Wayland Protocols";
    license = lib.licenses.lgpl21Plus;
    platforms = qtbase.meta.platforms;
    maintainers = [ lib.maintainers.ttuegel ];
  };
}