glm: update from 0.9.5.1 to 0.9.5.3

This commit is contained in:
Mateusz Kowalczyk 2014-09-30 10:33:52 +01:00
parent 07e2be6c29
commit c39a0b0659

View File

@ -1,11 +1,11 @@
{ stdenv, fetchurl, unzip }: { stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "glm-0.9.5.1"; name = "glm-0.9.5.3";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/project/ogl-math/${name}/${name}.zip"; url = "mirror://sourceforge/project/ogl-math/${name}/${name}.zip";
sha256 = "1x8bpmqdszzkg21r411w7cy4mqd5dcvb9jghc8h3xrx7ldbicqjg"; sha256 = "0ndwaw2mp7pzcwwm4dghbv5qqax5a8c5plnwdgnpc9adm79gj1rl";
}; };
buildInputs = [ unzip ]; buildInputs = [ unzip ];
@ -30,5 +30,6 @@ stdenv.mkDerivation rec {
homepage = http://glm.g-truc.net/; homepage = http://glm.g-truc.net/;
license = licenses.mit; license = licenses.mit;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
}; };
} }