Merge pull request #297417 from Luflosi/update/include-what-you-use

include-what-you-use: 0.21 -> 0.22
This commit is contained in:
Peder Bergebakken Sundt 2024-04-07 23:44:55 +02:00 committed by GitHub
commit f6ed1c3cb6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
pname = "include-what-you-use";
# Also bump llvmPackages in all-packages.nix to the supported version!
version = "0.21";
version = "0.22";
src = fetchurl {
url = "${meta.homepage}/downloads/${pname}-${version}.src.tar.gz";
hash = "sha256-ajUZGf+JvafJXIlUcmAYaNs9qrlqlYs44DYokNWHYLY=";
hash = "sha256-hZB0tGHqS4MlpzQYwgfKM7XmVmsI5rWH65FkQWVppt0=";
};
postPatch = ''
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
postInstall = ''
substituteInPlace $out/bin/iwyu_tool.py \
--replace "'include-what-you-use'" "'$out/bin/include-what-you-use'"
--replace-fail "'include-what-you-use'" "'$out/bin/include-what-you-use'"
mv $out/bin/include-what-you-use $out/bin/.include-what-you-use-unwrapped

View File

@ -19087,7 +19087,7 @@ with pkgs;
img = callPackage ../development/tools/img { };
include-what-you-use = callPackage ../development/tools/analysis/include-what-you-use {
llvmPackages = llvmPackages_17;
llvmPackages = llvmPackages_18;
};
indent = callPackage ../development/tools/misc/indent { };