Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mpv: fix lua library paths and clean up #35885

Merged
merged 4 commits into from Feb 28, 2018
Merged

mpv: fix lua library paths and clean up #35885

merged 4 commits into from Feb 28, 2018

Conversation

rnhmjoj
Copy link
Contributor

@rnhmjoj rnhmjoj commented Feb 27, 2018

Motivation for this change

I fixed the library paths so luasocket can be used from mpv scripts and removed the libcaca TODO as it seems to work fine. Also I cleaned up a bit the features/options of the package.

Things done
  • Tested using sandboxing (nix.useSandbox on NixOS)
  • Built on platform(s)
    • NixOS
    • macOS
    • other Linux distributions
  • Tested via one or more NixOS test(s)
  • Tested compilation of all pkgs that depend on this change using (none)
  • Tested execution of all binary files
  • Fits CONTRIBUTING.md.

@rnhmjoj rnhmjoj changed the title Mpv mpv: fix lua library paths and clean up Feb 27, 2018
@Mic92
Copy link
Member

Mic92 commented Feb 27, 2018

@GrahamcOfBorg build mpv

@GrahamcOfBorg
Copy link

Failure on x86_64-darwin (full log)

Partial log (click to expand)

Package ‘libpciaccess-0.14’ in /private/var/lib/ofborg/checkout/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/lnl7-mac/pkgs/servers/x11/xorg/default.nix:1115 is not supported on ‘x86_64-darwin’, refusing to evaluate.

a) For `nixos-rebuild` you can set
  { nixpkgs.config.allowBroken = true; }
in configuration.nix to override this.

b) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
  { allowBroken = true; }
to ~/.config/nixpkgs/config.nix.

, xineramaSupport ? true, libXinerama ? null
, xvSupport ? true, libXv ? null
, sdl2Support ? true, SDL2 ? null
, alsaSupport ? !stdenv.isDarwin, alsaLib ? null
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this removed?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I moved these to the package call (in all-packages.nix) since there was a waylandSupport = stdenv.isLinux; there already.

@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Partial log (click to expand)

post-installation fixup
shrinking RPATHs of ELF executables and libraries in /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0
shrinking /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0/bin/.mpv-wrapped
shrinking /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0/lib/libmpv.so.1.25.0
gzipping man pages under /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0/share/man/
strip is /nix/store/b0zlxla7dmy1iwc3g459rjznx59797xy-binutils-2.28.1/bin/strip
stripping (with command strip and flags -S) in /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0/lib  /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0/bin 
patching script interpreter paths in /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0
checking for references to /tmp/nix-build-mpv-0.27.0.drv-0 in /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0...
/nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0

@Mic92
Copy link
Member

Mic92 commented Feb 27, 2018

Mhm which package introduce libpciaccess in mpv?

@rnhmjoj
Copy link
Contributor Author

rnhmjoj commented Feb 27, 2018

nix why-depends nixpkgs.mpv nixpkgs.xlibs.libpciaccess
/nix/store/a3q5xswgl6d6h15cpikd1idg5d4iigb0-mpv-0.27.0
╚═══bin/.mpv-wrapped: …3fqrnl-lua-5.1.5/lib:/nix/store/5kcbn5i5pmarmppz843xcm7y2473ahk5-libdrm-2.4.89/lib:/nix/store/8b…
    => /nix/store/5kcbn5i5pmarmppz843xcm7y2473ahk5-libdrm-2.4.89
    ╚═══lib/libdrm_intel.la: …/lib/libdrm.la -lm -L/nix/store/dwxlz0w9hr614g1p5xfc8bxhc8vc3i0h-libpciaccess-0.14/lib /nix/stor…
        => /nix/store/dwxlz0w9hr614g1p5xfc8bxhc8vc3i0h-libpciaccess-0.14

@rnhmjoj
Copy link
Contributor Author

rnhmjoj commented Feb 27, 2018

I think we need a drmSupport = !stdenv.isDarwin.

rubberbandSupport = !stdenv.isDarwin;
dvdreadSupport = !stdenv.isDarwin;
dvdnavSupport = !stdenv.isDarwin;
drmSupport = !stdenv.isDarwin;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

drmSupport is already disabled.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, right. So does this mean the ? true in the package is overriding the option in the call?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Only if the variable is null, which is not the case.
Does why-depends only show the first match?

$ nix-repl> ({ a ? true }: a) { a = false; }
false

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

$ nix why-depends -a nixpkgs.mpv nixpkgs.xlibs.libpciaccess

gives a more complete picture

@@ -1,7 +1,7 @@
{ stdenv, fetchurl, fetchFromGitHub, fetchpatch, makeWrapper
, docutils, perl, pkgconfig, python3, which, ffmpeg
, freefont_ttf, freetype, libass, libpthreadstubs
, lua, lua5_sockets, libuchardet, libiconv ? null, darwin
, lua, luasocket, libuchardet, libiconv ? null, darwin

, x11Support ? true,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

libpciaccess is pulled by mesa, which is pulled by x11Support.

@Mic92
Copy link
Member

Mic92 commented Feb 27, 2018

@GrahamcOfBorg build mpv

@Mic92
Copy link
Member

Mic92 commented Feb 27, 2018

Let's roll the dice.

@GrahamcOfBorg
Copy link

Failure on x86_64-darwin (full log)

Partial log (click to expand)

error: while evaluating 'callPackageWith' at /Users/graham/nix-borg/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-ndnd/lib/customisation.nix:113:35, called from /Users/graham/nix-borg/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-ndnd/pkgs/top-level/all-packages.nix:16556:9:
while evaluating 'makeOverridable' at /Users/graham/nix-borg/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-ndnd/lib/customisation.nix:72:24, called from /Users/graham/nix-borg/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-ndnd/lib/customisation.nix:117:8:
while evaluating anonymous function at /Users/graham/nix-borg/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-ndnd/pkgs/applications/video/mpv/default.nix:1:1, called from /Users/graham/nix-borg/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-ndnd/lib/customisation.nix:74:12:
assertion failed at /Users/graham/nix-borg/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-ndnd/pkgs/applications/video/mpv/default.nix:51:1

@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Partial log (click to expand)

post-installation fixup
shrinking RPATHs of ELF executables and libraries in /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0
shrinking /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0/bin/.mpv-wrapped
shrinking /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0/lib/libmpv.so.1.25.0
gzipping man pages under /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0/share/man/
strip is /nix/store/b0zlxla7dmy1iwc3g459rjznx59797xy-binutils-2.28.1/bin/strip
stripping (with command strip and flags -S) in /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0/lib  /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0/bin 
patching script interpreter paths in /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0
checking for references to /tmp/nix-build-mpv-0.27.0.drv-0 in /nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0...
/nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0

@Mic92
Copy link
Member

Mic92 commented Feb 28, 2018

@GrahamcOfBorg build mpv

@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Partial log (click to expand)

/nix/store/fyyb02n68bppr74sccbv87jlifgbvgc8-mpv-0.27.0

@GrahamcOfBorg
Copy link

Failure on x86_64-darwin (full log)

Partial log (click to expand)

Package ‘libpciaccess-0.14’ in /private/var/lib/ofborg/checkout/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/lnl7-mac/pkgs/servers/x11/xorg/default.nix:1115 is not supported on ‘x86_64-darwin’, refusing to evaluate.

a) For `nixos-rebuild` you can set
  { nixpkgs.config.allowBroken = true; }
in configuration.nix to override this.

b) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
  { allowBroken = true; }
to ~/.config/nixpkgs/config.nix.

@GrahamcOfBorg
Copy link

Failure on aarch64-linux (full log)

Partial log (click to expand)

g++ -c -pipe -DNDEBUG -DQT_IMAGE_DECODERS -DRAPIDJSON_HAS_STDSTRING=1 -DMBGL_USE_GLES2 -D__QT__ -O3 -ftemplate-depth=1024 -fvisibility-inlines-hidden -fvisibility=hidden -DMBGL_VERSION_REV=\"qt-v1.2.0\" -O2 -fPIC -std=c++1z -w -D_REENTRANT -fvisibility=hidden -fvisibility-inlines-hidden -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_NO_DEBUG -DQT_NETWORK_LIB -DQT_GUI_LIB -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -I. -Ideps/boost/1.62.0 -Ideps/boost/1.62.0/include -Ideps/cheap-ruler/2.5.3 -Ideps/cheap-ruler/2.5.3/include -Ideps/earcut/0.12.4 -Ideps/earcut/0.12.4/include -Ideps/geojson/0.4.2 -Ideps/geojson/0.4.2/include -Ideps/geojsonvt/6.3.0 -Ideps/geojsonvt/6.3.0/include -Ideps/geometry/0.9.2 -Ideps/geometry/0.9.2/include -Ideps/kdbush/0.1.1-1 -Ideps/kdbush/0.1.1-1/include -Ideps/pixelmatch/0.10.0 -Ideps/pixelmatch/0.10.0/include -Ideps/polylabel/1.0.3 -Ideps/polylabel/1.0.3/include -Ideps/protozero/1.5.2 -Ideps/protozero/1.5.2/include -Ideps/rapidjson/1.1.0 -Ideps/rapidjson/1.1.0/include -Ideps/shelf-pack/2.1.1 -Ideps/shelf-pack/2.1.1/include -Ideps/supercluster/0.2.2 -Ideps/supercluster/0.2.2/include -Ideps/unique_resource/cba309e -Ideps/unique_resource/cba309e/include -Ideps/variant/1.1.4 -Ideps/variant/1.1.4/include -Ideps/vector-tile/1.0.0-rc7 -Ideps/vector-tile/1.0.0-rc7/include -Ideps/wagyu/0.4.3 -Ideps/wagyu/0.4.3/include -Iinclude -Iplatform/default -Iplatform/qt -Iplatform/qt/include -Isrc -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore -I.moc -isystem /nix/store/39v61i3xvxi7a7qdlr8hv5z4k6c4q6q8-mesa-noglu-17.3.3-dev/include -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/mkspecs/linux-g++ -o .obj/src/mbgl/renderer/render_tile.o src/mbgl/renderer/render_tile.cpp
g++ -c -pipe -DNDEBUG -DQT_IMAGE_DECODERS -DRAPIDJSON_HAS_STDSTRING=1 -DMBGL_USE_GLES2 -D__QT__ -O3 -ftemplate-depth=1024 -fvisibility-inlines-hidden -fvisibility=hidden -DMBGL_VERSION_REV=\"qt-v1.2.0\" -O2 -fPIC -std=c++1z -w -D_REENTRANT -fvisibility=hidden -fvisibility-inlines-hidden -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_NO_DEBUG -DQT_NETWORK_LIB -DQT_GUI_LIB -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -I. -Ideps/boost/1.62.0 -Ideps/boost/1.62.0/include -Ideps/cheap-ruler/2.5.3 -Ideps/cheap-ruler/2.5.3/include -Ideps/earcut/0.12.4 -Ideps/earcut/0.12.4/include -Ideps/geojson/0.4.2 -Ideps/geojson/0.4.2/include -Ideps/geojsonvt/6.3.0 -Ideps/geojsonvt/6.3.0/include -Ideps/geometry/0.9.2 -Ideps/geometry/0.9.2/include -Ideps/kdbush/0.1.1-1 -Ideps/kdbush/0.1.1-1/include -Ideps/pixelmatch/0.10.0 -Ideps/pixelmatch/0.10.0/include -Ideps/polylabel/1.0.3 -Ideps/polylabel/1.0.3/include -Ideps/protozero/1.5.2 -Ideps/protozero/1.5.2/include -Ideps/rapidjson/1.1.0 -Ideps/rapidjson/1.1.0/include -Ideps/shelf-pack/2.1.1 -Ideps/shelf-pack/2.1.1/include -Ideps/supercluster/0.2.2 -Ideps/supercluster/0.2.2/include -Ideps/unique_resource/cba309e -Ideps/unique_resource/cba309e/include -Ideps/variant/1.1.4 -Ideps/variant/1.1.4/include -Ideps/vector-tile/1.0.0-rc7 -Ideps/vector-tile/1.0.0-rc7/include -Ideps/wagyu/0.4.3 -Ideps/wagyu/0.4.3/include -Iinclude -Iplatform/default -Iplatform/qt -Iplatform/qt/include -Isrc -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore -I.moc -isystem /nix/store/39v61i3xvxi7a7qdlr8hv5z4k6c4q6q8-mesa-noglu-17.3.3-dev/include -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/mkspecs/linux-g++ -o .obj/src/mbgl/renderer/renderer.o src/mbgl/renderer/renderer.cpp
g++ -c -pipe -DNDEBUG -DQT_IMAGE_DECODERS -DRAPIDJSON_HAS_STDSTRING=1 -DMBGL_USE_GLES2 -D__QT__ -O3 -ftemplate-depth=1024 -fvisibility-inlines-hidden -fvisibility=hidden -DMBGL_VERSION_REV=\"qt-v1.2.0\" -O2 -fPIC -std=c++1z -w -D_REENTRANT -fvisibility=hidden -fvisibility-inlines-hidden -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_NO_DEBUG -DQT_NETWORK_LIB -DQT_GUI_LIB -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -I. -Ideps/boost/1.62.0 -Ideps/boost/1.62.0/include -Ideps/cheap-ruler/2.5.3 -Ideps/cheap-ruler/2.5.3/include -Ideps/earcut/0.12.4 -Ideps/earcut/0.12.4/include -Ideps/geojson/0.4.2 -Ideps/geojson/0.4.2/include -Ideps/geojsonvt/6.3.0 -Ideps/geojsonvt/6.3.0/include -Ideps/geometry/0.9.2 -Ideps/geometry/0.9.2/include -Ideps/kdbush/0.1.1-1 -Ideps/kdbush/0.1.1-1/include -Ideps/pixelmatch/0.10.0 -Ideps/pixelmatch/0.10.0/include -Ideps/polylabel/1.0.3 -Ideps/polylabel/1.0.3/include -Ideps/protozero/1.5.2 -Ideps/protozero/1.5.2/include -Ideps/rapidjson/1.1.0 -Ideps/rapidjson/1.1.0/include -Ideps/shelf-pack/2.1.1 -Ideps/shelf-pack/2.1.1/include -Ideps/supercluster/0.2.2 -Ideps/supercluster/0.2.2/include -Ideps/unique_resource/cba309e -Ideps/unique_resource/cba309e/include -Ideps/variant/1.1.4 -Ideps/variant/1.1.4/include -Ideps/vector-tile/1.0.0-rc7 -Ideps/vector-tile/1.0.0-rc7/include -Ideps/wagyu/0.4.3 -Ideps/wagyu/0.4.3/include -Iinclude -Iplatform/default -Iplatform/qt -Iplatform/qt/include -Isrc -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore -I.moc -isystem /nix/store/39v61i3xvxi7a7qdlr8hv5z4k6c4q6q8-mesa-noglu-17.3.3-dev/include -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/mkspecs/linux-g++ -o .obj/src/mbgl/renderer/renderer_backend.o src/mbgl/renderer/renderer_backend.cpp
g++ -c -pipe -DNDEBUG -DQT_IMAGE_DECODERS -DRAPIDJSON_HAS_STDSTRING=1 -DMBGL_USE_GLES2 -D__QT__ -O3 -ftemplate-depth=1024 -fvisibility-inlines-hidden -fvisibility=hidden -DMBGL_VERSION_REV=\"qt-v1.2.0\" -O2 -fPIC -std=c++1z -w -D_REENTRANT -fvisibility=hidden -fvisibility-inlines-hidden -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_NO_DEBUG -DQT_NETWORK_LIB -DQT_GUI_LIB -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -I. -Ideps/boost/1.62.0 -Ideps/boost/1.62.0/include -Ideps/cheap-ruler/2.5.3 -Ideps/cheap-ruler/2.5.3/include -Ideps/earcut/0.12.4 -Ideps/earcut/0.12.4/include -Ideps/geojson/0.4.2 -Ideps/geojson/0.4.2/include -Ideps/geojsonvt/6.3.0 -Ideps/geojsonvt/6.3.0/include -Ideps/geometry/0.9.2 -Ideps/geometry/0.9.2/include -Ideps/kdbush/0.1.1-1 -Ideps/kdbush/0.1.1-1/include -Ideps/pixelmatch/0.10.0 -Ideps/pixelmatch/0.10.0/include -Ideps/polylabel/1.0.3 -Ideps/polylabel/1.0.3/include -Ideps/protozero/1.5.2 -Ideps/protozero/1.5.2/include -Ideps/rapidjson/1.1.0 -Ideps/rapidjson/1.1.0/include -Ideps/shelf-pack/2.1.1 -Ideps/shelf-pack/2.1.1/include -Ideps/supercluster/0.2.2 -Ideps/supercluster/0.2.2/include -Ideps/unique_resource/cba309e -Ideps/unique_resource/cba309e/include -Ideps/variant/1.1.4 -Ideps/variant/1.1.4/include -Ideps/vector-tile/1.0.0-rc7 -Ideps/vector-tile/1.0.0-rc7/include -Ideps/wagyu/0.4.3 -Ideps/wagyu/0.4.3/include -Iinclude -Iplatform/default -Iplatform/qt -Iplatform/qt/include -Isrc -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore -I.moc -isystem /nix/store/39v61i3xvxi7a7qdlr8hv5z4k6c4q6q8-mesa-noglu-17.3.3-dev/include -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/mkspecs/linux-g++ -o .obj/src/mbgl/renderer/renderer_impl.o src/mbgl/renderer/renderer_impl.cpp
building of '/nix/store/0v4106paiffmmgmr41gas244jqlr79p8-qtlocation-5.10.1.drv' timed out after 3600 seconds
cannot build derivation '/nix/store/69ah3vscsnmyk8bxbnmhq3496g1sa1br-qtwebkit-5.9.1.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/sckxaidnp3vj3bp8mh283f4snbdrmjcq-phantomjs-2.1.1.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/8syrckybsm1dm4z4i8si3y2qggnrs16p-youtube-dl-2018.02.08.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/7kg52a3983akdsh61q08las0ig0bb0xr-mpv-0.27.0.drv': 1 dependencies couldn't be built
�[31;1merror:�[0m build of '/nix/store/7kg52a3983akdsh61q08las0ig0bb0xr-mpv-0.27.0.drv' failed

@GrahamcOfBorg
Copy link

Failure on aarch64-linux (full log)

Partial log (click to expand)

/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/bin/moc -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_NO_EXCEPTIONS -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -DQT_NO_DEBUG -DQT_PLUGIN -DQT_LOCATION_LIB -DQT_POSITIONING_LIB -DQT_QUICK_LIB -DQT_GUI_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include .moc/moc_predefs.h -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/mkspecs/linux-g++ -I/build/qtlocation-everywhere-src-5.10.1/src/plugins/geoservices/esri -I/build/qtlocation-everywhere-src-5.10.1/include/QtLocation/5.10.1 -I/build/qtlocation-everywhere-src-5.10.1/include/QtLocation/5.10.1/QtLocation -I/build/qtlocation-everywhere-src-5.10.1/include/QtPositioning/5.10.1 -I/build/qtlocation-everywhere-src-5.10.1/include/QtPositioning/5.10.1/QtPositioning -I/build/qtlocation-everywhere-src-5.10.1/include -I/build/qtlocation-everywhere-src-5.10.1/include/QtLocation -I/build/qtlocation-everywhere-src-5.10.1/include/QtPositioning -I/nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQuick/5.10.1 -I/nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQuick/5.10.1/QtQuick -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1 -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -I/nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQuick -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui -I/nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQml/5.10.1 -I/nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQml/5.10.1/QtQml -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1 -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -I/nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQml -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include -I/nix/store/0cqrdmiy8dxlzdf7x7szmgmv8274zz2w-libxml2-2.9.7-dev/include -I/nix/store/ph8sh5yabpbhnxpdvq6d2qzb04jgx4rw-zlib-1.2.11-dev/include -I/nix/store/nh6lji5iyhwap13sdcdqw3vh69i5qssp-libxslt-1.1.32-dev/include -I/nix/store/i5k6ymq5ykwfqkv90zq2irhfwbnljbl8-openssl-1.0.2n-dev/include -I/nix/store/9c3gyqfff4cbaapn6m15wxsrzjfpy302-sqlite-3.21.0-dev/include -I/nix/store/09i4ghxgmrn4rzzq4ynig7jh8kjvpqjh-harfbuzz-icu-1.7.1-dev/include -I/nix/store/ldwf0g13lkyg50r9yjdwvbcypjjzcbma-graphite2-1.3.6/include -I/nix/store/y88g3b1anb264j7qsilknjp6mnh8ahac-icu4c-59.1-dev/include -I/nix/store/9r69l9a6xr7h7qs889dh1kwxxgjwx0xb-harfbuzz-1.7.1-dev/include -I/nix/store/mz5b1imbaa4cw5spc0p3b5iz3bz9rk22-libjpeg-turbo-1.5.3-dev/include -I/nix/store/7ygaqwz3di6xqznz5px3hghagqv6jq0r-libpng-apng-1.6.34-dev/include -I/nix/store/8wvc4lk1amdxjdbxpw48bcb7pp7m4b1q-libtiff-4.0.9-dev/include -I/nix/store/p6i0361afgzn7kf51di9iins31fim7fp-xz-5.2.3-dev/include -I/nix/store/7k384h795k44v49rij3fd4yp98y2v5xc-pcre2-10.23-dev/include -I/nix/store/scdck0r72h3d7yj8c68fwcphvh2rhnsg-dbus-1.10.24-dev/include -I/nix/store/ii9sxnvijbqpp20daiwxk89nx5q02h8h-expat-2.2.5-dev/include -I/nix/store/4q0sr5085lgd9vbsn6pwv810j8lia5cb-glib-2.54.3-dev/include -I/nix/store/0v8yzbrg30p5057jxx39dm27qipc97hj-libffi-3.2.1-dev/include -I/nix/store/3z4gm69c3x5zca8xn87praaw0yq8hkwa-glibc-iconv-2.26-131/include -I/nix/store/ilsmqff4b8wqqaa6cq623hfzwpl7aymh-systemd-237-dev/include -I/nix/store/f9l1pwcp5wplwy9xaayciv2bl2yq6sib-fontconfig-2.12.1-dev/include -I/nix/store/vqhcd1dbsffvlj8sg6q46ypzfr2ii3r8-freetype-2.7.1-dev/include -I/nix/store/rh0mv4i2s5dlh6n9lgibrab7bqb8dgwd-bzip2-1.0.6.0.1-dev/include -I/nix/store/9c70xm3ssjh50xcyzgj6aly25808jzha-libX11-1.6.5-dev/include -I/nix/store/hmlgcs4cqnap06782dd6vnvsdg16nzin-libxcb-1.12-dev/include -I/nix/store/8i73s7l93p1fbpayfpl2xqxyisg00v19-xproto-7.0.31/include -I/nix/store/1wfnyxfgwrbvfyfc30pflfrr4v6ngn8z-kbproto-1.0.7/include -I/nix/store/abxcz3g03hbcpbysmvdna8q6hnlfhigy-libXcomposite-0.4.4-dev/include -I/nix/store/53019wi0yax48adiq288p8h0gya8ppzc-libXfixes-5.0.2-dev/include -I/nix/store/pagqs2v9rlk99800wmprni4bbf85ag5n-fixesproto-5.0/include -I/nix/store/s788mj64ic10rcidqzjzvp57804rkiaj-xextproto-7.3.0/include -I/nix/store/249xpayahbql3wzfpyng8gz7d5752j21-compositeproto-0.4.2/include -I/nix/store/9rh7xqbvnw3szwv86d1nym62crqqrgjm-libXext-1.3.3-dev/include -I/nix/store/b1gs2kmm7i2jc3vzxdjs1gf7knspn53k-libXau-1.0.8-dev/include -I/nix/store/rz5zyhkvil5g6fm9v6a2i1jn8prhhpdi-libXi-1.7.9-dev/include -I/nix/store/axv8ghmw9s5j02kis1n4f0ywwjw5adwn-inputproto-2.3.2/include -I/nix/store/5j7p8ywwakbqvrnmhxgn8npz5y98nvpc-libXrender-0.9.10-dev/include -I/nix/store/9kcx6svdwk5lc70xal4ki2crzcgw5rpq-renderproto-0.11.1/include -I/nix/store/2n25gqjsh1gvnlkiy3flzcnq52ky6y3v-libxkbcommon-0.7.2-dev/include -I/nix/store/cx0wy7n55zb716l8fjl6crimrn761s71-xcb-util-0.4.0-dev/include -I/nix/store/dka5brsxfi36dw7f0v9561dx64yncdwl-xcb-util-image-0.4.0-dev/include -I/nix/store/46svixncdq43hqs7bbp3ahgx927bs2ci-xcb-util-keysyms-0.4.0-dev/include -I/nix/store/m48lh5xkcj9r1r4q9314nw5w8w11yx2x-xcb-util-renderutil-0.3.9-dev/include -I/nix/store/5hf75zp49vqllxspp04zn5ilvn4h9gax-xcb-util-wm-0.4.1-dev/include -I/nix/store/39v61i3xvxi7a7qdlr8hv5z4k6c4q6q8-mesa-noglu-17.3.3-dev/include -I/nix/store/dxdnh9zpbhb8al39f647jz1hs0p7z7ws-libXdamage-1.1.4-dev/include -I/nix/store/sfaz6nza3kmn7k8y0nnmkpwvlkhk2vc5-damageproto-1.2.1/include -I/nix/store/f41h22q3hlpmqmpvkzq0b50qrjxgzrb1-libXxf86vm-1.1.4-dev/include -I/nix/store/ajzqhph09phc1p032smi9lqwi37p5ana-xf86vidmodeproto-2.3.1/include -I/nix/store/igd52bx4z4j3pggfz7rcq0nc0r0i7861-libdrm-2.4.89-dev/include -I/nix/store/9h4qa8dg64kqlgywyyn11y930mpldfbv-qtmultimedia-5.10.1-dev/include -I/nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include -I/nix/store/gw1qicxg7wqxy7f88h0qqrh61v7r095x-qtsvg-5.10.1-dev/include -I/nix/store/fg133q7mb7vrazmwg1p3x7a9k6184pgh-qtxmlpatterns-5.10.1-dev/include -I/nix/store/pzls6bai642l501wk5m9b4f6iih9a59x-gcc-7.3.0/include/c++/7.3.0 -I/nix/store/pzls6bai642l501wk5m9b4f6iih9a59x-gcc-7.3.0/include/c++/7.3.0/aarch64-unknown-linux-gnu -I/nix/store/pzls6bai642l501wk5m9b4f6iih9a59x-gcc-7.3.0/include/c++/7.3.0/backward -I/nix/store/pzls6bai642l501wk5m9b4f6iih9a59x-gcc-7.3.0/lib/gcc/aarch64-unknown-linux-gnu/7.3.0/include -I/nix/store/pzls6bai642l501wk5m9b4f6iih9a59x-gcc-7.3.0/include -I/nix/store/pzls6bai642l501wk5m9b4f6iih9a59x-gcc-7.3.0/lib/gcc/aarch64-unknown-linux-gnu/7.3.0/include-fixed -I/nix/store/qr6gjpj0r7a0c4iphf4pzs145k5xskgw-glibc-2.26-131-dev/include geotiledmap_esri.h -o .moc/moc_geotiledmap_esri.cpp
g++ -c -pipe -O2 -std=c++1z -fvisibility=hidden -fvisibility-inlines-hidden -fno-exceptions -Wall -W -Wvla -Wdate-time -Wshift-overflow=2 -Wduplicated-cond -Wno-stringop-overflow -D_REENTRANT -fPIC -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_NO_EXCEPTIONS -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -DQT_NO_DEBUG -DQT_PLUGIN -DQT_LOCATION_LIB -DQT_POSITIONING_LIB -DQT_QUICK_LIB -DQT_GUI_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I. -I../../../../include/QtLocation/5.10.1 -I../../../../include/QtLocation/5.10.1/QtLocation -I../../../../include/QtPositioning/5.10.1 -I../../../../include/QtPositioning/5.10.1/QtPositioning -I../../../../include -I../../../../include/QtLocation -I../../../../include/QtPositioning -isystem /nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQuick/5.10.1 -isystem /nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQuick/5.10.1/QtQuick -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -isystem /nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQuick -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui -isystem /nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQml/5.10.1 -isystem /nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQml/5.10.1/QtQml -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -isystem /nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQml -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore -I.moc -isystem /nix/store/39v61i3xvxi7a7qdlr8hv5z4k6c4q6q8-mesa-noglu-17.3.3-dev/include -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/mkspecs/linux-g++ -o .obj/moc_geotiledmap_esri.o .moc/moc_geotiledmap_esri.cpp
/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/bin/moc -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_NO_EXCEPTIONS -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -DQT_NO_DEBUG -DQT_PLUGIN -DQT_LOCATION_LIB -DQT_POSITIONING_LIB -DQT_QUICK_LIB -DQT_GUI_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include .moc/moc_predefs.h -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/mkspecs/linux-g++ -I/build/qtlocation-everywhere-src-5.10.1/src/plugins/geoservices/esri -I/build/qtlocation-everywhere-src-5.10.1/include/QtLocation/5.10.1 -I/build/qtlocation-everywhere-src-5.10.1/include/QtLocation/5.10.1/QtLocation -I/build/qtlocation-everywhere-src-5.10.1/include/QtPositioning/5.10.1 -I/build/qtlocation-everywhere-src-5.10.1/include/QtPositioning/5.10.1/QtPositioning -I/build/qtlocation-everywhere-src-5.10.1/include -I/build/qtlocation-everywhere-src-5.10.1/include/QtLocation -I/build/qtlocation-everywhere-src-5.10.1/include/QtPositioning -I/nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQuick/5.10.1 -I/nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQuick/5.10.1/QtQuick -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1 -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -I/nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQuick -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui -I/nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQml/5.10.1 -I/nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQml/5.10.1/QtQml -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1 -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -I/nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQml -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include -I/nix/store/0cqrdmiy8dxlzdf7x7szmgmv8274zz2w-libxml2-2.9.7-dev/include -I/nix/store/ph8sh5yabpbhnxpdvq6d2qzb04jgx4rw-zlib-1.2.11-dev/include -I/nix/store/nh6lji5iyhwap13sdcdqw3vh69i5qssp-libxslt-1.1.32-dev/include -I/nix/store/i5k6ymq5ykwfqkv90zq2irhfwbnljbl8-openssl-1.0.2n-dev/include -I/nix/store/9c3gyqfff4cbaapn6m15wxsrzjfpy302-sqlite-3.21.0-dev/include -I/nix/store/09i4ghxgmrn4rzzq4ynig7jh8kjvpqjh-harfbuzz-icu-1.7.1-dev/include -I/nix/store/ldwf0g13lkyg50r9yjdwvbcypjjzcbma-graphite2-1.3.6/include -I/nix/store/y88g3b1anb264j7qsilknjp6mnh8ahac-icu4c-59.1-dev/include -I/nix/store/9r69l9a6xr7h7qs889dh1kwxxgjwx0xb-harfbuzz-1.7.1-dev/include -I/nix/store/mz5b1imbaa4cw5spc0p3b5iz3bz9rk22-libjpeg-turbo-1.5.3-dev/include -I/nix/store/7ygaqwz3di6xqznz5px3hghagqv6jq0r-libpng-apng-1.6.34-dev/include -I/nix/store/8wvc4lk1amdxjdbxpw48bcb7pp7m4b1q-libtiff-4.0.9-dev/include -I/nix/store/p6i0361afgzn7kf51di9iins31fim7fp-xz-5.2.3-dev/include -I/nix/store/7k384h795k44v49rij3fd4yp98y2v5xc-pcre2-10.23-dev/include -I/nix/store/scdck0r72h3d7yj8c68fwcphvh2rhnsg-dbus-1.10.24-dev/include -I/nix/store/ii9sxnvijbqpp20daiwxk89nx5q02h8h-expat-2.2.5-dev/include -I/nix/store/4q0sr5085lgd9vbsn6pwv810j8lia5cb-glib-2.54.3-dev/include -I/nix/store/0v8yzbrg30p5057jxx39dm27qipc97hj-libffi-3.2.1-dev/include -I/nix/store/3z4gm69c3x5zca8xn87praaw0yq8hkwa-glibc-iconv-2.26-131/include -I/nix/store/ilsmqff4b8wqqaa6cq623hfzwpl7aymh-systemd-237-dev/include -I/nix/store/f9l1pwcp5wplwy9xaayciv2bl2yq6sib-fontconfig-2.12.1-dev/include -I/nix/store/vqhcd1dbsffvlj8sg6q46ypzfr2ii3r8-freetype-2.7.1-dev/include -I/nix/store/rh0mv4i2s5dlh6n9lgibrab7bqb8dgwd-bzip2-1.0.6.0.1-dev/include -I/nix/store/9c70xm3ssjh50xcyzgj6aly25808jzha-libX11-1.6.5-dev/include -I/nix/store/hmlgcs4cqnap06782dd6vnvsdg16nzin-libxcb-1.12-dev/include -I/nix/store/8i73s7l93p1fbpayfpl2xqxyisg00v19-xproto-7.0.31/include -I/nix/store/1wfnyxfgwrbvfyfc30pflfrr4v6ngn8z-kbproto-1.0.7/include -I/nix/store/abxcz3g03hbcpbysmvdna8q6hnlfhigy-libXcomposite-0.4.4-dev/include -I/nix/store/53019wi0yax48adiq288p8h0gya8ppzc-libXfixes-5.0.2-dev/include -I/nix/store/pagqs2v9rlk99800wmprni4bbf85ag5n-fixesproto-5.0/include -I/nix/store/s788mj64ic10rcidqzjzvp57804rkiaj-xextproto-7.3.0/include -I/nix/store/249xpayahbql3wzfpyng8gz7d5752j21-compositeproto-0.4.2/include -I/nix/store/9rh7xqbvnw3szwv86d1nym62crqqrgjm-libXext-1.3.3-dev/include -I/nix/store/b1gs2kmm7i2jc3vzxdjs1gf7knspn53k-libXau-1.0.8-dev/include -I/nix/store/rz5zyhkvil5g6fm9v6a2i1jn8prhhpdi-libXi-1.7.9-dev/include -I/nix/store/axv8ghmw9s5j02kis1n4f0ywwjw5adwn-inputproto-2.3.2/include -I/nix/store/5j7p8ywwakbqvrnmhxgn8npz5y98nvpc-libXrender-0.9.10-dev/include -I/nix/store/9kcx6svdwk5lc70xal4ki2crzcgw5rpq-renderproto-0.11.1/include -I/nix/store/2n25gqjsh1gvnlkiy3flzcnq52ky6y3v-libxkbcommon-0.7.2-dev/include -I/nix/store/cx0wy7n55zb716l8fjl6crimrn761s71-xcb-util-0.4.0-dev/include -I/nix/store/dka5brsxfi36dw7f0v9561dx64yncdwl-xcb-util-image-0.4.0-dev/include -I/nix/store/46svixncdq43hqs7bbp3ahgx927bs2ci-xcb-util-keysyms-0.4.0-dev/include -I/nix/store/m48lh5xkcj9r1r4q9314nw5w8w11yx2x-xcb-util-renderutil-0.3.9-dev/include -I/nix/store/5hf75zp49vqllxspp04zn5ilvn4h9gax-xcb-util-wm-0.4.1-dev/include -I/nix/store/39v61i3xvxi7a7qdlr8hv5z4k6c4q6q8-mesa-noglu-17.3.3-dev/include -I/nix/store/dxdnh9zpbhb8al39f647jz1hs0p7z7ws-libXdamage-1.1.4-dev/include -I/nix/store/sfaz6nza3kmn7k8y0nnmkpwvlkhk2vc5-damageproto-1.2.1/include -I/nix/store/f41h22q3hlpmqmpvkzq0b50qrjxgzrb1-libXxf86vm-1.1.4-dev/include -I/nix/store/ajzqhph09phc1p032smi9lqwi37p5ana-xf86vidmodeproto-2.3.1/include -I/nix/store/igd52bx4z4j3pggfz7rcq0nc0r0i7861-libdrm-2.4.89-dev/include -I/nix/store/9h4qa8dg64kqlgywyyn11y930mpldfbv-qtmultimedia-5.10.1-dev/include -I/nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include -I/nix/store/gw1qicxg7wqxy7f88h0qqrh61v7r095x-qtsvg-5.10.1-dev/include -I/nix/store/fg133q7mb7vrazmwg1p3x7a9k6184pgh-qtxmlpatterns-5.10.1-dev/include -I/nix/store/pzls6bai642l501wk5m9b4f6iih9a59x-gcc-7.3.0/include/c++/7.3.0 -I/nix/store/pzls6bai642l501wk5m9b4f6iih9a59x-gcc-7.3.0/include/c++/7.3.0/aarch64-unknown-linux-gnu -I/nix/store/pzls6bai642l501wk5m9b4f6iih9a59x-gcc-7.3.0/include/c++/7.3.0/backward -I/nix/store/pzls6bai642l501wk5m9b4f6iih9a59x-gcc-7.3.0/lib/gcc/aarch64-unknown-linux-gnu/7.3.0/include -I/nix/store/pzls6bai642l501wk5m9b4f6iih9a59x-gcc-7.3.0/include -I/nix/store/pzls6bai642l501wk5m9b4f6iih9a59x-gcc-7.3.0/lib/gcc/aarch64-unknown-linux-gnu/7.3.0/include-fixed -I/nix/store/qr6gjpj0r7a0c4iphf4pzs145k5xskgw-glibc-2.26-131-dev/include geotiledmappingmanagerengine_esri.h -o .moc/moc_geotiledmappingmanagerengine_esri.cpp
g++ -c -pipe -O2 -std=c++1z -fvisibility=hidden -fvisibility-inlines-hidden -fno-exceptions -Wall -W -Wvla -Wdate-time -Wshift-overflow=2 -Wduplicated-cond -Wno-stringop-overflow -D_REENTRANT -fPIC -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_NO_EXCEPTIONS -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -DQT_NO_DEBUG -DQT_PLUGIN -DQT_LOCATION_LIB -DQT_POSITIONING_LIB -DQT_QUICK_LIB -DQT_GUI_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I. -I../../../../include/QtLocation/5.10.1 -I../../../../include/QtLocation/5.10.1/QtLocation -I../../../../include/QtPositioning/5.10.1 -I../../../../include/QtPositioning/5.10.1/QtPositioning -I../../../../include -I../../../../include/QtLocation -I../../../../include/QtPositioning -isystem /nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQuick/5.10.1 -isystem /nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQuick/5.10.1/QtQuick -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -isystem /nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQuick -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui -isystem /nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQml/5.10.1 -isystem /nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQml/5.10.1/QtQml -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -isystem /nix/store/m24r981x2w9yc57za2p9kbsk48n5lh6r-qtdeclarative-5.10.1-dev/include/QtQml -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore -I.moc -isystem /nix/store/39v61i3xvxi7a7qdlr8hv5z4k6c4q6q8-mesa-noglu-17.3.3-dev/include -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/mkspecs/linux-g++ -o .obj/moc_geotiledmappingmanagerengine_esri.o .moc/moc_geotiledmappingmanagerengine_esri.cpp
building of '/nix/store/0v4106paiffmmgmr41gas244jqlr79p8-qtlocation-5.10.1.drv' timed out after 3600 seconds
cannot build derivation '/nix/store/69ah3vscsnmyk8bxbnmhq3496g1sa1br-qtwebkit-5.9.1.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/sckxaidnp3vj3bp8mh283f4snbdrmjcq-phantomjs-2.1.1.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/8syrckybsm1dm4z4i8si3y2qggnrs16p-youtube-dl-2018.02.08.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/7kg52a3983akdsh61q08las0ig0bb0xr-mpv-0.27.0.drv': 1 dependencies couldn't be built
�[31;1merror:�[0m build of '/nix/store/7kg52a3983akdsh61q08las0ig0bb0xr-mpv-0.27.0.drv' failed

@GrahamcOfBorg
Copy link

Failure on aarch64-linux (full log)

Partial log (click to expand)

g++ -c -pipe -DNDEBUG -DQT_IMAGE_DECODERS -DRAPIDJSON_HAS_STDSTRING=1 -DMBGL_USE_GLES2 -D__QT__ -O3 -ftemplate-depth=1024 -fvisibility-inlines-hidden -fvisibility=hidden -DMBGL_VERSION_REV=\"qt-v1.2.0\" -O2 -fPIC -std=c++1z -w -D_REENTRANT -fvisibility=hidden -fvisibility-inlines-hidden -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_NO_DEBUG -DQT_NETWORK_LIB -DQT_GUI_LIB -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -I. -Ideps/boost/1.62.0 -Ideps/boost/1.62.0/include -Ideps/cheap-ruler/2.5.3 -Ideps/cheap-ruler/2.5.3/include -Ideps/earcut/0.12.4 -Ideps/earcut/0.12.4/include -Ideps/geojson/0.4.2 -Ideps/geojson/0.4.2/include -Ideps/geojsonvt/6.3.0 -Ideps/geojsonvt/6.3.0/include -Ideps/geometry/0.9.2 -Ideps/geometry/0.9.2/include -Ideps/kdbush/0.1.1-1 -Ideps/kdbush/0.1.1-1/include -Ideps/pixelmatch/0.10.0 -Ideps/pixelmatch/0.10.0/include -Ideps/polylabel/1.0.3 -Ideps/polylabel/1.0.3/include -Ideps/protozero/1.5.2 -Ideps/protozero/1.5.2/include -Ideps/rapidjson/1.1.0 -Ideps/rapidjson/1.1.0/include -Ideps/shelf-pack/2.1.1 -Ideps/shelf-pack/2.1.1/include -Ideps/supercluster/0.2.2 -Ideps/supercluster/0.2.2/include -Ideps/unique_resource/cba309e -Ideps/unique_resource/cba309e/include -Ideps/variant/1.1.4 -Ideps/variant/1.1.4/include -Ideps/vector-tile/1.0.0-rc7 -Ideps/vector-tile/1.0.0-rc7/include -Ideps/wagyu/0.4.3 -Ideps/wagyu/0.4.3/include -Iinclude -Iplatform/default -Iplatform/qt -Iplatform/qt/include -Isrc -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore -I.moc -isystem /nix/store/39v61i3xvxi7a7qdlr8hv5z4k6c4q6q8-mesa-noglu-17.3.3-dev/include -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/mkspecs/linux-g++ -o .obj/src/mbgl/gl/object.o src/mbgl/gl/object.cpp
g++ -c -pipe -DNDEBUG -DQT_IMAGE_DECODERS -DRAPIDJSON_HAS_STDSTRING=1 -DMBGL_USE_GLES2 -D__QT__ -O3 -ftemplate-depth=1024 -fvisibility-inlines-hidden -fvisibility=hidden -DMBGL_VERSION_REV=\"qt-v1.2.0\" -O2 -fPIC -std=c++1z -w -D_REENTRANT -fvisibility=hidden -fvisibility-inlines-hidden -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_NO_DEBUG -DQT_NETWORK_LIB -DQT_GUI_LIB -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -I. -Ideps/boost/1.62.0 -Ideps/boost/1.62.0/include -Ideps/cheap-ruler/2.5.3 -Ideps/cheap-ruler/2.5.3/include -Ideps/earcut/0.12.4 -Ideps/earcut/0.12.4/include -Ideps/geojson/0.4.2 -Ideps/geojson/0.4.2/include -Ideps/geojsonvt/6.3.0 -Ideps/geojsonvt/6.3.0/include -Ideps/geometry/0.9.2 -Ideps/geometry/0.9.2/include -Ideps/kdbush/0.1.1-1 -Ideps/kdbush/0.1.1-1/include -Ideps/pixelmatch/0.10.0 -Ideps/pixelmatch/0.10.0/include -Ideps/polylabel/1.0.3 -Ideps/polylabel/1.0.3/include -Ideps/protozero/1.5.2 -Ideps/protozero/1.5.2/include -Ideps/rapidjson/1.1.0 -Ideps/rapidjson/1.1.0/include -Ideps/shelf-pack/2.1.1 -Ideps/shelf-pack/2.1.1/include -Ideps/supercluster/0.2.2 -Ideps/supercluster/0.2.2/include -Ideps/unique_resource/cba309e -Ideps/unique_resource/cba309e/include -Ideps/variant/1.1.4 -Ideps/variant/1.1.4/include -Ideps/vector-tile/1.0.0-rc7 -Ideps/vector-tile/1.0.0-rc7/include -Ideps/wagyu/0.4.3 -Ideps/wagyu/0.4.3/include -Iinclude -Iplatform/default -Iplatform/qt -Iplatform/qt/include -Isrc -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore -I.moc -isystem /nix/store/39v61i3xvxi7a7qdlr8hv5z4k6c4q6q8-mesa-noglu-17.3.3-dev/include -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/mkspecs/linux-g++ -o .obj/src/mbgl/gl/stencil_mode.o src/mbgl/gl/stencil_mode.cpp
g++ -c -pipe -DNDEBUG -DQT_IMAGE_DECODERS -DRAPIDJSON_HAS_STDSTRING=1 -DMBGL_USE_GLES2 -D__QT__ -O3 -ftemplate-depth=1024 -fvisibility-inlines-hidden -fvisibility=hidden -DMBGL_VERSION_REV=\"qt-v1.2.0\" -O2 -fPIC -std=c++1z -w -D_REENTRANT -fvisibility=hidden -fvisibility-inlines-hidden -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_NO_DEBUG -DQT_NETWORK_LIB -DQT_GUI_LIB -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -I. -Ideps/boost/1.62.0 -Ideps/boost/1.62.0/include -Ideps/cheap-ruler/2.5.3 -Ideps/cheap-ruler/2.5.3/include -Ideps/earcut/0.12.4 -Ideps/earcut/0.12.4/include -Ideps/geojson/0.4.2 -Ideps/geojson/0.4.2/include -Ideps/geojsonvt/6.3.0 -Ideps/geojsonvt/6.3.0/include -Ideps/geometry/0.9.2 -Ideps/geometry/0.9.2/include -Ideps/kdbush/0.1.1-1 -Ideps/kdbush/0.1.1-1/include -Ideps/pixelmatch/0.10.0 -Ideps/pixelmatch/0.10.0/include -Ideps/polylabel/1.0.3 -Ideps/polylabel/1.0.3/include -Ideps/protozero/1.5.2 -Ideps/protozero/1.5.2/include -Ideps/rapidjson/1.1.0 -Ideps/rapidjson/1.1.0/include -Ideps/shelf-pack/2.1.1 -Ideps/shelf-pack/2.1.1/include -Ideps/supercluster/0.2.2 -Ideps/supercluster/0.2.2/include -Ideps/unique_resource/cba309e -Ideps/unique_resource/cba309e/include -Ideps/variant/1.1.4 -Ideps/variant/1.1.4/include -Ideps/vector-tile/1.0.0-rc7 -Ideps/vector-tile/1.0.0-rc7/include -Ideps/wagyu/0.4.3 -Ideps/wagyu/0.4.3/include -Iinclude -Iplatform/default -Iplatform/qt -Iplatform/qt/include -Isrc -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore -I.moc -isystem /nix/store/39v61i3xvxi7a7qdlr8hv5z4k6c4q6q8-mesa-noglu-17.3.3-dev/include -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/mkspecs/linux-g++ -o .obj/src/mbgl/gl/uniform.o src/mbgl/gl/uniform.cpp
g++ -c -pipe -DNDEBUG -DQT_IMAGE_DECODERS -DRAPIDJSON_HAS_STDSTRING=1 -DMBGL_USE_GLES2 -D__QT__ -O3 -ftemplate-depth=1024 -fvisibility-inlines-hidden -fvisibility=hidden -DMBGL_VERSION_REV=\"qt-v1.2.0\" -O2 -fPIC -std=c++1z -w -D_REENTRANT -fvisibility=hidden -fvisibility-inlines-hidden -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_NO_DEBUG -DQT_NETWORK_LIB -DQT_GUI_LIB -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -I. -Ideps/boost/1.62.0 -Ideps/boost/1.62.0/include -Ideps/cheap-ruler/2.5.3 -Ideps/cheap-ruler/2.5.3/include -Ideps/earcut/0.12.4 -Ideps/earcut/0.12.4/include -Ideps/geojson/0.4.2 -Ideps/geojson/0.4.2/include -Ideps/geojsonvt/6.3.0 -Ideps/geojsonvt/6.3.0/include -Ideps/geometry/0.9.2 -Ideps/geometry/0.9.2/include -Ideps/kdbush/0.1.1-1 -Ideps/kdbush/0.1.1-1/include -Ideps/pixelmatch/0.10.0 -Ideps/pixelmatch/0.10.0/include -Ideps/polylabel/1.0.3 -Ideps/polylabel/1.0.3/include -Ideps/protozero/1.5.2 -Ideps/protozero/1.5.2/include -Ideps/rapidjson/1.1.0 -Ideps/rapidjson/1.1.0/include -Ideps/shelf-pack/2.1.1 -Ideps/shelf-pack/2.1.1/include -Ideps/supercluster/0.2.2 -Ideps/supercluster/0.2.2/include -Ideps/unique_resource/cba309e -Ideps/unique_resource/cba309e/include -Ideps/variant/1.1.4 -Ideps/variant/1.1.4/include -Ideps/vector-tile/1.0.0-rc7 -Ideps/vector-tile/1.0.0-rc7/include -Ideps/wagyu/0.4.3 -Ideps/wagyu/0.4.3/include -Iinclude -Iplatform/default -Iplatform/qt -Iplatform/qt/include -Isrc -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork/5.10.1/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql/5.10.1/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1 -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtNetwork -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtGui -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtSql -isystem /nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/include/QtCore -I.moc -isystem /nix/store/39v61i3xvxi7a7qdlr8hv5z4k6c4q6q8-mesa-noglu-17.3.3-dev/include -I/nix/store/zyk3f6lsimvgvjyq73xrj45d6xm0fr2i-qtbase-5.10.1-dev/mkspecs/linux-g++ -o .obj/src/mbgl/gl/value.o src/mbgl/gl/value.cpp
building of '/nix/store/0v4106paiffmmgmr41gas244jqlr79p8-qtlocation-5.10.1.drv' timed out after 3200 seconds
cannot build derivation '/nix/store/69ah3vscsnmyk8bxbnmhq3496g1sa1br-qtwebkit-5.9.1.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/sckxaidnp3vj3bp8mh283f4snbdrmjcq-phantomjs-2.1.1.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/8syrckybsm1dm4z4i8si3y2qggnrs16p-youtube-dl-2018.02.08.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/7kg52a3983akdsh61q08las0ig0bb0xr-mpv-0.27.0.drv': 1 dependencies couldn't be built
�[31;1merror:�[0m build of '/nix/store/7kg52a3983akdsh61q08las0ig0bb0xr-mpv-0.27.0.drv' failed

@rnhmjoj
Copy link
Contributor Author

rnhmjoj commented Feb 28, 2018

Thank you

@rnhmjoj rnhmjoj deleted the mpv branch February 23, 2019 09:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants