fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
46 lines
779 B
Nix
46 lines
779 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
boost,
|
|
freetype,
|
|
ftgl,
|
|
libGLU,
|
|
libGL,
|
|
python,
|
|
}:
|
|
|
|
let
|
|
|
|
pythonVersion = with lib.versions; "${major python.version}${minor python.version}";
|
|
in
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyftgl";
|
|
version = "0.4b";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "umlaeute";
|
|
repo = "${pname}-${version}";
|
|
rev = version;
|
|
sha256 = "12zcjv4cwwjihiaf74kslrdmmk4bs47h7006gyqfwdfchfjdgg4r";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i "s,'boost_python','boost_python${pythonVersion}',g" setup.py
|
|
'';
|
|
|
|
buildInputs = [
|
|
boost
|
|
freetype
|
|
ftgl
|
|
libGLU
|
|
libGL
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python bindings for FTGL (FreeType for OpenGL)";
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
}
|