gtkd: dontStrip as a workaround for https://github.com/NixOS/nixpkgs/issues/40397 (#41226)
This fixes https://github.com/NixOS/nixpkgs/issues/41188
This commit is contained in:
parent
ca143a4db6
commit
1d5c454b72
|
@ -84,6 +84,10 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
installFlags = "prefix=$(out)";
|
installFlags = "prefix=$(out)";
|
||||||
|
|
||||||
|
# Workaround for https://github.com/NixOS/nixpkgs/issues/40397
|
||||||
|
# Remove after update to binutils 2.31
|
||||||
|
dontStrip = true;
|
||||||
|
|
||||||
inherit atk cairo gdk_pixbuf librsvg pango;
|
inherit atk cairo gdk_pixbuf librsvg pango;
|
||||||
inherit (gnome3) glib gtk3 gtksourceview libgda libpeas vte;
|
inherit (gnome3) glib gtk3 gtksourceview libgda libpeas vte;
|
||||||
inherit (gst_all_1) gstreamer;
|
inherit (gst_all_1) gstreamer;
|
||||||
|
|
Loading…
Reference in New Issue