2018-02-23 19:51:07 +00:00
|
|
|
{ stdenv, fetchurl, fetchzip, cmake }:
|
2014-01-18 17:38:59 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-12-29 00:06:38 +00:00
|
|
|
version = "0.9.8.5";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "glm";
|
2014-01-18 17:38:59 +00:00
|
|
|
|
2017-12-29 00:06:38 +00:00
|
|
|
src = fetchzip {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://github.com/g-truc/glm/releases/download/${version}/${pname}-${version}.zip";
|
2017-12-29 00:06:38 +00:00
|
|
|
sha256 = "0dkfj4hin3am9fxgcvwr5gj0h9y52x7wa03lfwb3q0bvaj1rsly2";
|
2014-01-18 17:38:59 +00:00
|
|
|
};
|
|
|
|
|
2017-12-29 00:06:38 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2014-01-18 17:38:59 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
2017-12-29 00:06:38 +00:00
|
|
|
cmakeConfigureFlags = [ "-DGLM_INSTALL_ENABLE=off" ];
|
2017-03-20 15:08:09 +00:00
|
|
|
|
2018-02-23 19:51:07 +00:00
|
|
|
# fetch newer version of platform.h which correctly supports gcc 7.3
|
|
|
|
gcc7PlatformPatch = fetchurl {
|
2018-03-14 18:06:21 +00:00
|
|
|
url = "https://raw.githubusercontent.com/g-truc/glm/384dab02e45a8ad3c1a3fa0906e0d5682c5b27b9/glm/simd/platform.h";
|
|
|
|
sha256 = "0ym0sgwznxhfyi014xs55x3ql7r65fjs34sqb5jiaffkdhkqgzia";
|
2018-02-23 19:51:07 +00:00
|
|
|
};
|
|
|
|
|
2017-12-29 00:06:38 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace CMakeLists.txt \
|
|
|
|
--replace '"''${CMAKE_CURRENT_BINARY_DIR}/''${GLM_INSTALL_CONFIGDIR}' '"''${GLM_INSTALL_CONFIGDIR}'
|
2018-02-23 19:51:07 +00:00
|
|
|
cp ${gcc7PlatformPatch} glm/simd/platform.h
|
2017-03-20 15:08:09 +00:00
|
|
|
'';
|
|
|
|
|
2019-10-30 00:40:49 +00:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-DGLM_COMPILER=0";
|
2018-03-14 18:06:21 +00:00
|
|
|
|
2017-12-29 00:06:38 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $doc/share/doc/glm
|
|
|
|
cp -rv $NIX_BUILD_TOP/$sourceRoot/doc/* $doc/share/doc/glm
|
2014-01-18 17:38:59 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "OpenGL Mathematics library for C++";
|
|
|
|
longDescription = ''
|
|
|
|
OpenGL Mathematics (GLM) is a header only C++ mathematics library for
|
|
|
|
graphics software based on the OpenGL Shading Language (GLSL)
|
|
|
|
specification and released under the MIT license.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://glm.g-truc.net/";
|
2014-01-18 17:38:59 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
2019-12-05 07:29:48 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ];
|
2014-01-18 17:38:59 +00:00
|
|
|
};
|
|
|
|
}
|
2017-03-20 15:08:09 +00:00
|
|
|
|