summary refs log tree commit diff
path: root/pkgs/development/guile-modules/guile-opengl/default.nix
blob: c7704d87fad2cb4de3acc6f920f4541914c8c220 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, pkgconfig, guile }:

stdenv.mkDerivation rec {
  name = "guile-opengl-0.1.0";

  meta = with stdenv.lib; {
    description = "Guile binding for the OpenGL graphics API";
    homepage    = "http://gnu.org/s/guile-opengl";
    license     = licenses.gpl3Plus;
    platforms   = platforms.linux;
  };

  src = fetchurl {
    url = "mirror://gnu/guile-opengl/${name}.tar.gz";
    sha256 = "13qfx4xh8baryxqrv986l848ygd0piqwm6s2s90pxk9c0m9vklim";
  };

  nativeBuildInputs = [ pkgconfig guile ];
}