redumper: 655 -> 657

This commit is contained in:
Hugh O'Brien
2025-10-26 21:31:36 -07:00
parent 102c98bcd4
commit cf5ef623c0
+2 -8
View File
@@ -9,13 +9,13 @@
# redumper is using C++ modules, this requires latest C++20 compiler and build tools
llvmPackages.libcxxStdenv.mkDerivation (finalAttrs: {
pname = "redumper";
version = "655";
version = "657";
src = fetchFromGitHub {
owner = "superg";
repo = "redumper";
tag = "b${finalAttrs.version}";
hash = "sha256-z/T/CJEBXE8mwOAtnjB5bVkIuu0tJtwfn8Y2tTnFAfw=";
hash = "sha256-dkdG00nbnHSC8xC6540KJmTDnEohLQfHpvYzc5dS6tk=";
};
nativeBuildInputs = [
@@ -31,12 +31,6 @@ llvmPackages.libcxxStdenv.mkDerivation (finalAttrs: {
"-DREDUMPER_CLANG_LINK_OPTIONS=" # overrides the '-static' default
];
# Leads to: clang++: warning: argument unused during compilation: '-stdlib=libc++' [-Wunused-command-line-argument]
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace-fail 'add_compile_options($<$<COMPILE_LANGUAGE:CXX>:-stdlib=libc++>)' ""
'';
meta = {
homepage = "https://github.com/superg/redumper";
description = "Low level CD dumper utility";