From 5e04917e65d14a841098ab0534f74abacb632f73 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 4 Dec 2014 14:29:59 +0100 Subject: gource: fix build with new glm version --- pkgs/applications/version-management/gource/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/version-management/gource/default.nix b/pkgs/applications/version-management/gource/default.nix index 8d784b3e3d30..82b3f7aed095 100644 --- a/pkgs/applications/version-management/gource/default.nix +++ b/pkgs/applications/version-management/gource/default.nix @@ -18,7 +18,8 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ]; - NIX_CFLAGS_COMPILE = "-fpermissive"; # fix build with newer gcc versions + NIX_CFLAGS_COMPILE = "-fpermissive " + # fix build with newer gcc versions + "-std=c++11"; # fix build with glm >= 0.9.6.0 meta = with stdenv.lib; { homepage = http://code.google.com/p/gource/; -- cgit 1.4.1