2018-02-24 12:59:47 +00:00
|
|
|
{ stdenv, fetchurl, libGLU, xlibsWrapper, libXmu, libXi
|
2017-06-28 16:48:13 +01:00
|
|
|
, buildPlatform, hostPlatform
|
|
|
|
}:
|
2010-02-05 22:00:51 +00:00
|
|
|
|
2014-02-24 04:46:04 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2012-01-26 18:04:02 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-25 22:02:34 +01:00
|
|
|
name = "glew-2.1.0";
|
2008-01-16 02:20:46 +00:00
|
|
|
|
2008-01-30 17:20:48 +00:00
|
|
|
src = fetchurl {
|
2012-01-26 18:04:02 +00:00
|
|
|
url = "mirror://sourceforge/glew/${name}.tgz";
|
2018-03-25 22:02:34 +01:00
|
|
|
sha256 = "159wk5dc0ykjbxvag5i1m2mhp23zkk6ra04l26y3jc3nwvkr3ph4";
|
2008-01-16 02:20:46 +00:00
|
|
|
};
|
|
|
|
|
2016-09-01 16:23:31 +01:00
|
|
|
outputs = [ "bin" "out" "dev" "doc" ];
|
|
|
|
|
2017-08-14 21:39:03 +01:00
|
|
|
buildInputs = [ xlibsWrapper libXmu libXi ];
|
2018-02-24 12:59:47 +00:00
|
|
|
propagatedBuildInputs = [ libGLU ]; # GL/glew.h includes GL/glu.h
|
2008-01-16 02:20:46 +00:00
|
|
|
|
2013-06-09 01:33:34 +01:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i 's|lib64|lib|' config/Makefile.linux
|
2017-11-27 15:57:50 +00:00
|
|
|
substituteInPlace config/Makefile.darwin --replace /usr/local "$out"
|
2017-06-28 21:12:05 +01:00
|
|
|
${optionalString (hostPlatform != buildPlatform) ''
|
2017-11-27 15:57:50 +00:00
|
|
|
sed -i -e 's/\(INSTALL.*\)-s/\1/' Makefile
|
2014-03-10 21:22:21 +00:00
|
|
|
''}
|
2013-06-09 01:33:34 +01:00
|
|
|
'';
|
|
|
|
|
2014-02-24 04:46:04 +00:00
|
|
|
buildFlags = [ "all" ];
|
|
|
|
installFlags = [ "install.all" ];
|
|
|
|
|
|
|
|
preInstall = ''
|
2016-09-01 16:23:31 +01:00
|
|
|
makeFlagsArray+=(GLEW_DEST=$out BINDIR=$bin/bin INCDIR=$dev/include/GL)
|
2013-06-09 01:33:34 +01:00
|
|
|
'';
|
|
|
|
|
2014-02-24 04:46:04 +00:00
|
|
|
postInstall = ''
|
2013-05-18 08:31:02 +01:00
|
|
|
mkdir -pv $out/share/doc/glew
|
|
|
|
mkdir -p $out/lib/pkgconfig
|
|
|
|
cp glew*.pc $out/lib/pkgconfig
|
2016-11-25 22:37:15 +00:00
|
|
|
cp -r README.md LICENSE.txt doc $out/share/doc/glew
|
2016-09-01 16:23:31 +01:00
|
|
|
rm $out/lib/*.a
|
2013-05-18 08:31:02 +01:00
|
|
|
'';
|
|
|
|
|
2017-06-23 22:45:27 +01:00
|
|
|
makeFlags = [
|
|
|
|
"SYSTEM=${if hostPlatform.isMinGW then "mingw" else hostPlatform.parsed.kernel.name}"
|
2017-06-28 16:48:13 +01:00
|
|
|
];
|
2014-02-24 04:46:04 +00:00
|
|
|
|
2017-11-27 15:57:50 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-08-21 20:15:32 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-05-18 08:31:02 +01:00
|
|
|
description = "An OpenGL extension loading library for C(++)";
|
2010-02-05 22:00:51 +00:00
|
|
|
homepage = http://glew.sourceforge.net/;
|
2014-08-21 20:15:32 +01:00
|
|
|
license = licenses.free; # different files under different licenses
|
|
|
|
#["BSD" "GLX" "SGI-B" "GPL2"]
|
|
|
|
platforms = platforms.mesaPlatforms;
|
2008-01-16 02:20:46 +00:00
|
|
|
};
|
|
|
|
}
|