Commit d4766057 authored by aleksana's avatar aleksana
Browse files

valgrind-light: correctly override meta

This is broken due to Nix treating `a = { b.c = d; }` as `a = { b = { c
= d; }; }` and `overrideAttrs` isn't recursively merging attributes with
old ones.

Broken in 95e172d7
https://github.com/NixOS/nixpkgs/pull/340144
parent cb97dfe6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19123,7 +19123,7 @@ with pkgs;
    inherit (buildPackages.darwin) xnu bootstrap_cmds;
  };
  valgrind-light = (res.valgrind.override { gdb = null; }).overrideAttrs (oldAttrs: {
    meta.description = "${oldAttrs.meta.description} (without GDB)";
    meta = oldAttrs.meta // { description = "${oldAttrs.meta.description} (without GDB)"; };
  });
  qcachegrind = libsForQt5.callPackage ../development/tools/analysis/qcachegrind { };