about summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/include-what-you-use
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-12-20 03:15:36 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-12-20 03:15:36 +0100
commit986f446674271385baaf28313555c8686a60ab7b (patch)
tree42f1dce2452d8bfecbfb568899fa3c9a607f5d58 /pkgs/development/tools/analysis/include-what-you-use
parent5958deb7d8a67912a67010594568f27aa7e020fc (diff)
downloadnixlib-986f446674271385baaf28313555c8686a60ab7b.tar
nixlib-986f446674271385baaf28313555c8686a60ab7b.tar.gz
nixlib-986f446674271385baaf28313555c8686a60ab7b.tar.bz2
nixlib-986f446674271385baaf28313555c8686a60ab7b.tar.lz
nixlib-986f446674271385baaf28313555c8686a60ab7b.tar.xz
nixlib-986f446674271385baaf28313555c8686a60ab7b.tar.zst
nixlib-986f446674271385baaf28313555c8686a60ab7b.zip
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/
Diffstat (limited to 'pkgs/development/tools/analysis/include-what-you-use')
-rw-r--r--pkgs/development/tools/analysis/include-what-you-use/default.nix6
1 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 57d5cadf98c2..4ad8b3f8380b 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}";