2019-11-10 17:44:34 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, pure, freeglut, libGLU, libGL, xlibsWrapper }:
|
2015-05-26 08:58:18 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
baseName = "gl";
|
|
|
|
version = "0.9";
|
|
|
|
name = "pure-${baseName}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://bitbucket.org/purelang/pure-lang/downloads/${name}.tar.gz";
|
|
|
|
sha256 = "edd594222f89ae372067eda6679a37488986b9739b5b79b4a25ac48255d31bba";
|
|
|
|
};
|
|
|
|
|
2017-09-05 23:25:26 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-11-10 17:44:34 +01:00
|
|
|
propagatedBuildInputs = [ pure freeglut libGLU libGL xlibsWrapper ];
|
2019-10-27 14:03:25 +01:00
|
|
|
makeFlags = [
|
|
|
|
"libdir=${placeholder ''out''}/lib"
|
|
|
|
"prefix=${placeholder ''out''}/"
|
|
|
|
];
|
2015-05-26 08:58:18 +02:00
|
|
|
setupHook = ../generic-setup-hook.sh;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Fairly complete Pure bindings for the OpenGL graphics library, which allow you to do 2D and 3D graphics programming with Pure";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://puredocs.bitbucket.org/pure-gl.html";
|
2015-05-26 08:58:18 +02:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ asppsa ];
|
|
|
|
};
|
|
|
|
}
|