ufraw: fix build by using gcc6

doesn't build with gcc7 due to ill-formed upstream code,
see https://gcc.gnu.org/gcc-7/porting_to.html#cmath
This commit is contained in:
xeji 2018-03-11 18:13:52 +01:00
parent 8332b7aef9
commit 817cd00bb9
1 changed files with 3 additions and 1 deletions

View File

@ -5154,7 +5154,9 @@ with pkgs;
udptunnel = callPackage ../tools/networking/udptunnel { };
ufraw = callPackage ../applications/graphics/ufraw { };
ufraw = callPackage ../applications/graphics/ufraw {
stdenv = overrideCC stdenv gcc6; # doesn't build with gcc7
};
uget = callPackage ../tools/networking/uget { };