core/pkgs/by-name/li/libepoxy/default.nix

70 lines
2.2 KiB
Nix
Raw Normal View History

2024-05-13 21:24:10 +00:00
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, utilmacros, python3
, libGL, libX11, Carbon, OpenGL, x11Support ? !stdenv.isDarwin
# for passthru.tests
# , testers
2024-05-02 00:46:19 +00:00
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libepoxy";
version = "1.5.10";
2024-05-13 21:24:10 +00:00
src = with finalAttrs;
fetchFromGitHub {
owner = "anholt";
repo = pname;
rev = version;
sha256 = "sha256-gZiyPOW2PeTMILcPiUTqPUGRNlMM5mI1z9563v4SgEs=";
};
2024-05-02 00:46:19 +00:00
patches = [ ./libgl-path.patch ];
postPatch = ''
patchShebangs src/*.py
2024-05-13 21:24:10 +00:00
'' + lib.optionalString stdenv.isDarwin ''
2024-05-02 00:46:19 +00:00
substituteInPlace src/dispatch_common.h --replace "PLATFORM_HAS_GLX 0" "PLATFORM_HAS_GLX 1"
''
2024-05-13 21:24:10 +00:00
# cgl_core and cgl_epoxy_api fail in darwin sandbox and on Hydra (because it's headless?)
+ lib.optionalString stdenv.isDarwin ''
substituteInPlace test/meson.build \
--replace "[ 'cgl_epoxy_api', [ 'cgl_epoxy_api.c' ] ]," ""
'' + lib.optionalString (stdenv.isDarwin && stdenv.isx86_64) ''
substituteInPlace test/meson.build \
--replace "[ 'cgl_core', [ 'cgl_core.c' ] ]," ""
'';
2024-05-02 00:46:19 +00:00
outputs = [ "out" "dev" ];
nativeBuildInputs = [ meson ninja pkg-config utilmacros python3 ];
2024-05-13 21:24:10 +00:00
buildInputs = lib.optionals (x11Support && !stdenv.isDarwin) [ libGL ]
++ lib.optionals x11Support [ libX11 ]
++ lib.optionals stdenv.isDarwin [ Carbon OpenGL ];
2024-05-02 00:46:19 +00:00
mesonFlags = [
"-Degl=${if (x11Support && !stdenv.isDarwin) then "yes" else "no"}"
"-Dglx=${if x11Support then "yes" else "no"}"
"-Dtests=${lib.boolToString finalAttrs.doCheck}"
"-Dx11=${lib.boolToString x11Support}"
];
2024-05-13 21:24:10 +00:00
env.NIX_CFLAGS_COMPILE = lib.optionalString (x11Support && !stdenv.isDarwin)
''-DLIBGL_PATH="${lib.getLib libGL}/lib"'';
2024-05-02 00:46:19 +00:00
doCheck = true;
# passthru.tests = {
# pkg-config = testers.hasPkgConfigModules {
# package = finalAttrs.finalPackage;
# };
# };
meta = with lib; {
description = "A library for handling OpenGL function pointer management";
homepage = "https://github.com/anholt/libepoxy";
license = licenses.mit;
maintainers = with maintainers; [ goibhniu ];
platforms = platforms.unix;
pkgConfigModules = [ "epoxy" ];
};
})