This fixes https://github.com/NixOS/nixpkgs/issues/41188
This commit is contained in:
Thomas Mader 2018-05-30 09:30:50 +02:00 committed by xeji
parent ca143a4db6
commit 1d5c454b72
1 changed files with 4 additions and 0 deletions

View File

@ -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;