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/
This commit is contained in:
Tobias Geerinckx-Rice 2015-12-20 03:15:36 +01:00
parent 5958deb7d8
commit 986f446674

View File

@ -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}";