about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMatthew Glazar <strager.nds@gmail.com>2019-08-28 22:31:57 -0700
committerMatthew Glazar <strager.nds@gmail.com>2019-08-28 22:31:57 -0700
commit7ba8b728dc1100b4a114d92974a17587a02f0c21 (patch)
tree56c8f61788c64db9940b1efa334402283d153780 /pkgs
parentbeff2f8d75ef2c65017fb25e251337c6bb2e950d (diff)
downloadnixlib-7ba8b728dc1100b4a114d92974a17587a02f0c21.tar
nixlib-7ba8b728dc1100b4a114d92974a17587a02f0c21.tar.gz
nixlib-7ba8b728dc1100b4a114d92974a17587a02f0c21.tar.bz2
nixlib-7ba8b728dc1100b4a114d92974a17587a02f0c21.tar.lz
nixlib-7ba8b728dc1100b4a114d92974a17587a02f0c21.tar.xz
nixlib-7ba8b728dc1100b4a114d92974a17587a02f0c21.tar.zst
nixlib-7ba8b728dc1100b4a114d92974a17587a02f0c21.zip
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.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/analysis/include-what-you-use/default.nix6
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 4 insertions, 4 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 4222f72248a8..019a449ebcd9 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.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; {
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 06dd28295702..493aa3bead86 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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 { };