summary refs log blame commit diff
path: root/pkgs/development/guile-modules/guile-opengl/default.nix
blob: 437af0f4edf231444d4610257d513765f4c62325 (plain) (tree)
1
2
3
4
5
6
7
8
9





            
 

                         
                    

                  

                                                                 

    



                       
 
                    
                                                            
                                                               

                                            
                               
    
 
{ lib
, stdenv
, fetchurl
, guile
, pkg-config
}:

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

  src = fetchurl {
    url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
    hash = "sha256-NdK5UwUszX5B0kKbynG8oD2PCKIGpZ1x91ktBDvpDo8=";
  };

  nativeBuildInputs = [
    pkg-config
    guile
  ];

  meta = with lib; {
    homepage = "https://www.gnu.org/software/guile-opengl/";
    description = "Guile bindings for the OpenGL graphics API";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ vyp ];
    platforms = platforms.unix;
  };
}