2014-10-31 01:25:45 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, guile }:
|
|
|
|
|
2017-09-24 12:03:56 +01:00
|
|
|
let
|
|
|
|
name = "guile-opengl-${version}";
|
|
|
|
version = "0.1.0";
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
inherit name;
|
2014-10-31 01:25:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/guile-opengl/${name}.tar.gz";
|
|
|
|
sha256 = "13qfx4xh8baryxqrv986l848ygd0piqwm6s2s90pxk9c0m9vklim";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig guile ];
|
2017-09-24 12:03:56 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Guile bindings for the OpenGL graphics API";
|
|
|
|
homepage = "http://gnu.org/s/guile-opengl";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ vyp ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2014-10-31 01:25:45 +00:00
|
|
|
}
|