2017-03-20 16:08:09 +01:00
|
|
|
{ stdenv, fetchurl, unzip, cmake }:
|
2014-01-18 18:38:59 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-03-20 16:08:09 +01:00
|
|
|
version = "0.9.8.4";
|
|
|
|
name = "glm-${version}";
|
2014-01-18 18:38:59 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-03-20 16:08:09 +01:00
|
|
|
url = "https://github.com/g-truc/glm/releases/download/${version}/${name}.zip";
|
|
|
|
sha256 = "1c9cflvx0b16qxh3izk6siqldp9q8qlrznk14br3jdyhnr2gbdx9";
|
2014-01-18 18:38:59 +01:00
|
|
|
};
|
|
|
|
|
2017-03-20 16:08:09 +01:00
|
|
|
buildInputs = [ unzip cmake ];
|
2014-01-18 18:38:59 +01:00
|
|
|
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
2017-03-20 16:08:09 +01:00
|
|
|
phases = [ "unpackPhase" "buildPhase" "installPhase" ];
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
set -x
|
|
|
|
cmake CMakeLists.txt -DCMAKE_INSTALL_PREFIX:PATH=$out
|
|
|
|
'';
|
|
|
|
|
2014-01-18 18:38:59 +01:00
|
|
|
installPhase = ''
|
2017-03-20 16:08:09 +01:00
|
|
|
mkdir -p $out/lib/pkgconfig
|
|
|
|
cp glm.pc $out/lib/pkgconfig
|
|
|
|
|
2014-01-18 18:38:59 +01:00
|
|
|
mkdir -p "$out/include"
|
|
|
|
cp -r glm "$out/include"
|
|
|
|
|
|
|
|
mkdir -p "$doc/share/doc/glm"
|
|
|
|
cp -r doc/* "$doc/share/doc/glm"
|
|
|
|
'';
|
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
homepage = http://glm.g-truc.net/;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
2014-09-30 11:33:52 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
2014-01-18 18:38:59 +01:00
|
|
|
};
|
|
|
|
}
|
2017-03-20 16:08:09 +01:00
|
|
|
|