python3Packages.ghome-foyer-api: init at 1.1.1 (#380790)
[NixPkgs.git] / pkgs / desktops / deepin / library / deepin-wayland-protocols / default.nix
blob839b02633af916259e3fca703ca64b19a548232d
2   stdenv,
3   lib,
4   fetchFromGitHub,
5   cmake,
6   extra-cmake-modules,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "deepin-wayland-protocols";
11   version = "1.6.0-deepin.1.2";
13   src = fetchFromGitHub {
14     owner = "linuxdeepin";
15     repo = pname;
16     rev = version;
17     sha256 = "sha256-8Im3CueC8sYA5mwRU/Z7z8HA4mPQvVSqcTD813QCYxo=";
18   };
20   nativeBuildInputs = [
21     cmake
22     extra-cmake-modules
23   ];
25   meta = with lib; {
26     description = "XML files of the non-standard wayland protocols use in deepin";
27     homepage = "https://github.com/linuxdeepin/deepin-wayland-protocols";
28     license = licenses.lgpl21Plus;
29     platforms = platforms.linux;
30     maintainers = teams.deepin.members;
31   };