mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
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 95e172d7c0
https://github.com/NixOS/nixpkgs/pull/340144
This commit is contained in:
parent
cb97dfe6c0
commit
d476605713
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user