50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, isPy3k
|
|
, libGL
|
|
, libX11
|
|
, pytestCheckHook
|
|
, psutil
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "glcontext";
|
|
version = "2.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "moderngl";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "16kwrfjijn9bnb48rk17wapmhxq6g9s59zczh65imyncb9k82wkc";
|
|
};
|
|
|
|
disabled = !isPy3k;
|
|
|
|
buildInputs = [ libGL libX11 ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace glcontext/x11.cpp \
|
|
--replace '"libGL.so"' '"${libGL}/lib/libGL.so"' \
|
|
--replace '"libX11.so"' '"${libX11}/lib/libX11.so"'
|
|
substituteInPlace glcontext/egl.cpp \
|
|
--replace '"libGL.so"' '"${libGL}/lib/libGL.so"' \
|
|
--replace '"libEGL.so"' '"${libGL}/lib/libEGL.so"'
|
|
'';
|
|
|
|
# Tests fail because they try to open display. See
|
|
# https://github.com/NixOS/nixpkgs/pull/121439
|
|
# for details.
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "glcontext" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/moderngl/glcontext";
|
|
description = "OpenGL implementation for ModernGL";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ friedelino ];
|
|
};
|
|
}
|