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




                                  
                              
                   

                  
                                                                                
                                                                    







                                                
                                                   






                                            
{ lib, stdenv, fetchurl, pkgconfig
, wayland
}:

stdenv.mkDerivation rec {
  pname = "wayland-protocols";
  version = "1.18";

  src = fetchurl {
    url = "https://wayland.freedesktop.org/releases/${pname}-${version}.tar.xz";
    sha256 = "1cvl93h83ymbfhb567jv5gzyq08181w7c46rsw4xqqqpcvkvfwrx";
  };

  nativeBuildInputs = [ pkgconfig ];

  buildInputs = [ wayland ];

  meta = {
    description = "Wayland protocol extensions";
    homepage    = https://wayland.freedesktop.org/;
    license     = lib.licenses.mit;
    platforms   = lib.platforms.linux;
    maintainers = with lib.maintainers; [ ];
  };

  passthru.version = version;
}