Unverified Commit cf5ef623 authored by Hugh O'Brien's avatar Hugh O'Brien
Browse files

redumper: 655 -> 657

parent 102c98bc
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -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";