summary refs log blame commit diff
path: root/pkgs/development/libraries/glew/default.nix
blob: 2af500b3db6c8566a0afe2e166a4c0e5678cb8b9 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                            
                                                    





                                                                                             

                                              
 
args:
args.stdenv.mkDerivation {
  name = "glew-1.5.0";

  src = args.fetchurl {
    url = http://dfn.dl.sourceforge.net/sourceforge/glew/glew-1.5.0-src.tgz;
    sha256 = "1kjr1fchnl785wsg11vzc03q3pm12lh20n1i593zr1xqfjgx2b4h";
  };

  buildInputs =(with args; [mesa x11 libXmu libXi]);

  meta = { 
      description = "cross-platform open-source C/C++ extension loading library";
      homepage = http://glew.sourceforge.net/;
      license = ["BSD" "GLX" "SGI-B" "GPL2"]; # License description copied from gentoo-1.4.0 
  };

  installPhase="GLEW_DEST=\$out make install";
}