mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
31 lines
792 B
Nix
31 lines
792 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, glfw3 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "glfw";
|
|
version = "2.5.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FlorianRhiem";
|
|
repo = "pyGLFW";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-puaKveByAEkgME81uePTMSglvMgyqornW1sNAbJXNuc=";
|
|
};
|
|
|
|
# Patch path to GLFW shared object
|
|
patches = [ ./search-path.patch ];
|
|
postPatch = ''
|
|
substituteInPlace glfw/library.py --replace "@GLFW@" '${glfw3}/lib'
|
|
'';
|
|
propagatedBuildInputs = [ glfw3 ];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "glfw" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python bindings for GLFW";
|
|
homepage = "https://github.com/FlorianRhiem/pyGLFW";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.McSinyx ];
|
|
};
|
|
}
|