include-what-you-use: 0.5 -> 0.6

* Added mappings for Qt 5.4.
* Added better analysis of uses in macros.
* Added --no_comments switch to suppress why-comments.
* Fixed bug with global namespace qualifier on friend declarations.
* Fixed bug in fix_includes.py generating invalid diff output.
This commit is contained in:
Tobias Geerinckx-Rice 2016-05-16 18:39:12 +02:00
parent a4e9662297
commit 2159ea5e4c
No known key found for this signature in database
GPG key ID: 91CCDB9B48541B99
2 changed files with 3 additions and 3 deletions

View file

@ -3,10 +3,10 @@
stdenv.mkDerivation rec {
name = "include-what-you-use-${version}";
# Also bump llvmPackages in all-packages.nix to the supported version!
version = "0.5";
version = "0.6";
src = fetchurl {
sha256 = "19pwhgwvfr86n8ks099p9r02v7zh8d3qs7g7snzkhpdgq1azww85";
sha256 = "0n3z4pfbby0rl338irbs4yvcmjfnza82xg9a8r9amyl0bkfasbxb";
url = "${meta.homepage}/downloads/${name}.src.tar.gz";
};

View file

@ -6169,7 +6169,7 @@ in
};
include-what-you-use = callPackage ../development/tools/analysis/include-what-you-use {
llvmPackages = llvmPackages_37;
llvmPackages = llvmPackages_38;
};
indent = callPackage ../development/tools/misc/indent { };