From 986f446674271385baaf28313555c8686a60ab7b Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Dec 2015 03:15:36 +0100 Subject: [PATCH] include-what-you-use: 0.4 -> 0.5 Compatible with llvm+clang 3.7. Changes: - Added Boost and Qt mappings. - Better support for using declarations. - Allow size_t from multiple headers. - Fixed handling includes with common path prefix. More: http://include-what-you-use.org/ --- .../tools/analysis/include-what-you-use/default.nix | 6 +++--- 1 file 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 57d5cadf98c..4ad8b3f8380 100644 --- a/pkgs/development/tools/analysis/include-what-you-use/default.nix +++ b/pkgs/development/tools/analysis/include-what-you-use/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchurl, cmake, llvmPackages_36 }: +{ stdenv, fetchurl, cmake, llvmPackages_37 }: let - version = "0.4"; - llvmPackages = llvmPackages_36; + version = "0.5"; + llvmPackages = llvmPackages_37; in stdenv.mkDerivation rec { name = "include-what-you-use-${version}";