include-what-you-use: 0.10 -> 0.12

Release notes:
https://github.com/include-what-you-use/include-what-you-use/releases/tag/clang_8.0

IWYU version 0.12 is based on LLVM/Clang version 8.0.
This commit is contained in:
Matthew Glazar 2019-08-28 22:31:57 -07:00
parent beff2f8d75
commit 7ba8b728dc
2 changed files with 4 additions and 4 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.10";
version = "0.12";
src = fetchurl {
sha256 = "16alan9rwbhpyfxmlpc7gbfnbqd877wdqrkvgqrjb1jlqkzpg55s";
sha256 = "09b0h704fh7r4f5h92p5997cj3zk1v04bqp4jk1j1f6cmfq2z2d5";
url = "${meta.homepage}/downloads/${name}.src.tar.gz";
};
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
postInstall = ''
substituteInPlace $out/bin/iwyu_tool.py \
--replace "['include-what-you-use']" "['$out/bin/include-what-you-use']"
--replace "'include-what-you-use'" "'$out/bin/include-what-you-use'"
'';
meta = with stdenv.lib; {

View File

@ -9352,7 +9352,7 @@ in
};
include-what-you-use = callPackage ../development/tools/analysis/include-what-you-use {
llvmPackages = llvmPackages_6;
llvmPackages = llvmPackages_8;
};
indent = callPackage ../development/tools/misc/indent { };