From 2159ea5e4cb78493a15202fdd902af1dd43887d3 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 16 May 2016 18:39:12 +0200 Subject: [PATCH] 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. --- .../tools/analysis/include-what-you-use/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/analysis/include-what-you-use/default.nix b/pkgs/development/tools/analysis/include-what-you-use/default.nix index 374f0fee3f1..bd3f33d169a 100644 --- a/pkgs/development/tools/analysis/include-what-you-use/default.nix +++ b/pkgs/development/tools/analysis/include-what-you-use/default.nix @@ -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"; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 351b3a781d3..9b614b8e83d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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 { };