mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:03:22 +00:00
21 lines
477 B
Nix
21 lines
477 B
Nix
|
{ stdenv, buildPythonPackage, fetchFromGitHub
|
||
|
, boost, freetype, ftgl, mesa }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
name = "pyftgl-0.4b";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "umlaeute";
|
||
|
repo = "pyftgl";
|
||
|
rev = "0.4b";
|
||
|
sha256 = "12zcjv4cwwjihiaf74kslrdmmk4bs47h7006gyqfwdfchfjdgg4r";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ boost freetype ftgl mesa ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Python bindings for FTGL (FreeType for OpenGL)";
|
||
|
license = licenses.gpl2Plus;
|
||
|
};
|
||
|
}
|