diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-05-31T11·23+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-05-31T11·23+0200 |
commit | 10f3a2e5f213df4a1d50947066613bf87a5a1008 (patch) | |
tree | 6dc215e59bb466a694e91dd3a45034590c7a2b4a /release.nix | |
parent | 759ac27f282182075047887dd7574749eea2488a (diff) |
Fix clang build failure
Apparently opinion is divided on whether [[noreturn]] is allowed on a lambda: http://stackoverflow.com/questions/26888805/how-to-declare-a-lambdas-operator-as-noreturn http://hydra.nixos.org/build/36462100
Diffstat (limited to 'release.nix')
-rw-r--r-- | release.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/release.nix b/release.nix index 4803788fe009..b5e5e945e76c 100644 --- a/release.nix +++ b/release.nix @@ -99,6 +99,8 @@ let doInstallCheck = true; installCheckFlags = "sysconfdir=$(out)/etc"; + + stdenv = clangStdenv; }); |