mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
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
(cherry picked from commit 817cd00bb9)
This commit is contained in:
@@ -5146,7 +5146,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 { };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user