95c8277701
PR #26007 used these to avoid causing a mass rebuild. Now that we know things work, we do that to clean up.
54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{ stdenv, fetchurl, mesa_glu, xlibsWrapper, libXmu, libXi
|
|
, buildPlatform, hostPlatform
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "glew-2.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/glew/${name}.tgz";
|
|
sha256 = "0r37fg2s1f0jrvwh6c8cz5x6v4wqmhq42qm15cs9qs349q5c6wn5";
|
|
};
|
|
|
|
outputs = [ "bin" "out" "dev" "doc" ];
|
|
|
|
nativeBuildInputs = [ xlibsWrapper libXmu libXi ];
|
|
propagatedNativeBuildInputs = [ mesa_glu ]; # GL/glew.h includes GL/glu.h
|
|
|
|
patchPhase = ''
|
|
sed -i 's|lib64|lib|' config/Makefile.linux
|
|
${optionalString (hostPlatform != buildPlatform) ''
|
|
sed -i -e 's/\(INSTALL.*\)-s/\1/' Makefile
|
|
''}
|
|
'';
|
|
|
|
buildFlags = [ "all" ];
|
|
installFlags = [ "install.all" ];
|
|
|
|
preInstall = ''
|
|
makeFlagsArray+=(GLEW_DEST=$out BINDIR=$bin/bin INCDIR=$dev/include/GL)
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -pv $out/share/doc/glew
|
|
mkdir -p $out/lib/pkgconfig
|
|
cp glew*.pc $out/lib/pkgconfig
|
|
cp -r README.md LICENSE.txt doc $out/share/doc/glew
|
|
rm $out/lib/*.a
|
|
'';
|
|
|
|
makeFlags = [
|
|
"SYSTEM=${if hostPlatform.isMinGW then "mingw" else hostPlatform.parsed.kernel.name}"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An OpenGL extension loading library for C(++)";
|
|
homepage = http://glew.sourceforge.net/;
|
|
license = licenses.free; # different files under different licenses
|
|
#["BSD" "GLX" "SGI-B" "GPL2"]
|
|
platforms = platforms.mesaPlatforms;
|
|
};
|
|
}
|