Merge pull request #287974 from trofi/stenc-gcc-13-fix

stenc: fix `gcc-13` build failure
This commit is contained in:
Nick Cao
2024-02-11 12:46:19 -05:00
committed by GitHub
+7
View File
@@ -16,6 +16,13 @@ stdenv.mkDerivation rec {
sha256 = "GcCRVkv+1mREq3MhMRn5fICthwI4WRQJSP6InuzxP1Q=";
};
postPatch = ''
# Fix gcc-13 build by pulling missing header. UPstream also fixed it
# in next major version, but there are many other patch dependencies.
# TODO: remove on next major version update
sed -e '1i #include <cstdint>' -i src/scsiencrypt.h
'';
nativeBuildInputs = [ autoreconfHook ];
passthru.updateScript = gitUpdater { };