46e98a907e
Add headers that got moved in #72999
80 lines
1.6 KiB
Nix
80 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkgconfig
|
|
, meson
|
|
, ninja
|
|
, libX11
|
|
, mesa
|
|
, libGL
|
|
, wayland
|
|
}:
|
|
|
|
let
|
|
eglexternalplatform = stdenv.mkDerivation {
|
|
pname = "eglexternalplatform";
|
|
version = "1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Nvidia";
|
|
repo = "eglexternalplatform";
|
|
rev = "7c8f8e2218e46b1a4aa9538520919747f1184d86";
|
|
sha256 = "0lr5s2xa1zn220ghmbsiwgmx77l156wk54c7hybia0xpr9yr2nhb";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/include/"
|
|
cp interface/eglexternalplatform.h "$out/include/"
|
|
cp interface/eglexternalplatformversion.h "$out/include/"
|
|
|
|
substituteInPlace eglexternalplatform.pc \
|
|
--replace "/usr/include/EGL" "$out/include"
|
|
mkdir -p "$out/share/pkgconfig"
|
|
cp eglexternalplatform.pc "$out/share/pkgconfig/"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
license = licenses.mit;
|
|
};
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "egl-wayland";
|
|
version = "1.1.4";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Nvidia";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0wvamjcfycd7rgk7v14g2rin55xin9rfkxmivyay3cm08vnl7y1d";
|
|
};
|
|
|
|
# Add missing include
|
|
# https://github.com/NVIDIA/egl-wayland/pull/24
|
|
patches = [ ./eglmesaext.patch ];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkgconfig
|
|
];
|
|
|
|
buildInputs = [
|
|
eglexternalplatform
|
|
libX11
|
|
mesa
|
|
libGL
|
|
wayland
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "The EGLStream-based Wayland external platform";
|
|
homepage = https://github.com/NVIDIA/egl-wayland/;
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ hedning ];
|
|
};
|
|
}
|