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

treewide: fix derivation names #41162

Merged
merged 1 commit into from May 28, 2018
Merged

Conversation

ryantm
Copy link
Member

@ryantm ryantm commented May 28, 2018

Motivation for this change

all these packages were being excluded from repology because their derivation names could not be parsed.

Things done
  • built all of them on NixOS

@ryantm
Copy link
Member Author

ryantm commented May 28, 2018

@GrahamcOfBorg build altcoins.mist infamousPlugins swh-lv2 manuskript neovim-remote

@ryantm
Copy link
Member Author

ryantm commented May 28, 2018

@GrahamcOfBorg build wxhexeditor yi exrtools gnuclad cura-lulzbot nix-tour xrandr-invert-colors

@GrahamcOfBorg
Copy link

Success on x86_64-darwin (full log)

Attempted: neovim-remote

The following builds were skipped because they don't evaluate on x86_64-darwin: altcoins.mist, infamousPlugins, swh-lv2, manuskript

Partial log (click to expand)

writing top-level names to neovim_remote.egg-info/top_level.txt
reading manifest file 'neovim_remote.egg-info/SOURCES.txt'
writing manifest file 'neovim_remote.egg-info/SOURCES.txt'
running build_ext

----------------------------------------------------------------------
Ran 0 tests in 0.000s

OK
/nix/store/w3674pv58aq28qck88n0saigc5id8xy7-python3.6-neovim-remote-1.8.6

@ryantm
Copy link
Member Author

ryantm commented May 28, 2018

@GrahamcOfBorg build uzbl coyim salut_a_toi weechat gwyddion ripser

@GrahamcOfBorg
Copy link

No attempt on x86_64-darwin (full log)

The following builds were skipped because they don't evaluate on x86_64-darwin: wxhexeditor, yi, exrtools, gnuclad, cura-lulzbot, nix-tour, xrandr-invert-colors

Partial log (click to expand)


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

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


@GrahamcOfBorg
Copy link

Failure on x86_64-darwin (full log)

Attempted: weechat

The following builds were skipped because they don't evaluate on x86_64-darwin: uzbl, coyim, salut_a_toi, gwyddion, ripser

Partial log (click to expand)

1 gem installed
post-installation fixup
patching script interpreter paths in /nix/store/9wbmsanv1rm4j6ki3xspshp1iazcjr0f-ruby2.4.4-asciidoctor-pdf-1.5.0.alpha.16
/nix/store/9wbmsanv1rm4j6ki3xspshp1iazcjr0f-ruby2.4.4-asciidoctor-pdf-1.5.0.alpha.16/lib/ruby/gems/2.4.0/gems/asciidoctor-pdf-1.5.0.alpha.16/bin/asciidoctor-pdf: interpreter directive changed from "/usr/bin/env ruby" to "/nix/store/9b3fj6j8qa0vl4clib1rq1qa7352sl89-ruby-2.4.4/bin/ruby"
cannot build derivation '/nix/store/dazm1qfb3j2gz8j9inzk7x184mlic636-asciidoctor-1.5.6.2.drv': 2 dependencies couldn't be built
cannot build derivation '/nix/store/vzcvqxgkw0xbxm1k925snxd4gml2q50h-asciidoctor-1.5.6.2.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/fnisicq6r0amyzm101vqzyrqlwkq8ppi-weechat-2.1.drv': 2 dependencies couldn't be built
cannot build derivation '/nix/store/i0cy95jbxivbsvimmzcswa84ai3fpqfk-weechat-plugins.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/skswzh34nsrbammfcrza283501dxqb5i-weechat-2.1.drv': 2 dependencies couldn't be built
�[31;1merror:�[0m build of '/nix/store/skswzh34nsrbammfcrza283501dxqb5i-weechat-2.1.drv' failed

@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: wxhexeditor, exrtools, gnuclad, nix-tour, xrandr-invert-colors

The following builds were skipped because they don't evaluate on x86_64-linux: yi, cura-lulzbot

Partial log (click to expand)

shrinking /nix/store/316036ayjwhkhmgcmagw14r4kqx69zjq-wxHexEditor-0.24/bin/wxHexEditor
strip is /nix/store/92d2ifxcni4n3zx9s8wnkcjlvnx5ajlc-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/316036ayjwhkhmgcmagw14r4kqx69zjq-wxHexEditor-0.24/bin
patching script interpreter paths in /nix/store/316036ayjwhkhmgcmagw14r4kqx69zjq-wxHexEditor-0.24
checking for references to /build in /nix/store/316036ayjwhkhmgcmagw14r4kqx69zjq-wxHexEditor-0.24...
/nix/store/316036ayjwhkhmgcmagw14r4kqx69zjq-wxHexEditor-0.24
/nix/store/yyqa5i1zf8pqmfayrlsjc6vvhc9s92xn-exrtools-0.4
/nix/store/5yd7lpnxfkmknfqpgpgq5z1m7z58s1ym-gnuclad-0.2.4
/nix/store/fq7s57c0yfc6wrl2l29h4rgk3bnnpl63-nix-tour-0.0.1
/nix/store/ig0ywskm2qqwk4iiadnbhmh8rz0hxdqr-xrandr-invert-colors-0.01

@@ -1,11 +1,12 @@
{ stdenv, zlib, fetchFromGitHub, python3Packages }:

python3Packages.buildPythonApplication rec {
name = "manuskript";
pname = "manuskript";
name = "${pname}-${version}";
Copy link
Member

Choose a reason for hiding this comment

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

Like with buildPythonPackage you don't need to define name here.

@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: coyim, salut_a_toi, weechat, gwyddion, ripser

The following builds were skipped because they don't evaluate on x86_64-linux: uzbl

Partial log (click to expand)

running post installation stuff
symbolically linking /nix/store/r1s6v5cikmnv2wplj1npijs45wzq7mp2-salut-a-toi-0.6.1/lib/python2.7/site-packages/sat/sat.sh -> /nix/store/r1s6v5cikmnv2wplj1npijs45wzq7mp2-salut-a-toi-0.6.1/bin/sat
glibPreFixupPhase
post-installation fixup
shrinking RPATHs of ELF executables and libraries in /nix/store/r1s6v5cikmnv2wplj1npijs45wzq7mp2-salut-a-toi-0.6.1
strip is /nix/store/92d2ifxcni4n3zx9s8wnkcjlvnx5ajlc-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/r1s6v5cikmnv2wplj1npijs45wzq7mp2-salut-a-toi-0.6.1/lib  /nix/store/r1s6v5cikmnv2wplj1npijs45wzq7mp2-salut-a-toi-0.6.1/bin
patching script interpreter paths in /nix/store/r1s6v5cikmnv2wplj1npijs45wzq7mp2-salut-a-toi-0.6.1
/nix/store/r1s6v5cikmnv2wplj1npijs45wzq7mp2-salut-a-toi-0.6.1/lib/python2.7/site-packages/sat/sat.sh: interpreter directive changed from "/bin/sh" to "/nix/store/m47apl3hq3i52fzy2cz24378p0xn4lyx-bash-4.4-p19/bin/sh"
checking for references to /build in /nix/store/r1s6v5cikmnv2wplj1npijs45wzq7mp2-salut-a-toi-0.6.1...

@GrahamcOfBorg
Copy link

Success on aarch64-linux (full log)

Attempted: wxhexeditor, exrtools, gnuclad, nix-tour, xrandr-invert-colors

The following builds were skipped because they don't evaluate on aarch64-linux: yi, cura-lulzbot

Partial log (click to expand)

shrinking /nix/store/r1bgifwrsb5np2bnd5a7wmyrd8y4dqd9-wxHexEditor-0.24/bin/wxHexEditor
strip is /nix/store/8yfik687kfccisxnad42j19lfb7ij9b4-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/r1bgifwrsb5np2bnd5a7wmyrd8y4dqd9-wxHexEditor-0.24/bin
patching script interpreter paths in /nix/store/r1bgifwrsb5np2bnd5a7wmyrd8y4dqd9-wxHexEditor-0.24
checking for references to /build in /nix/store/r1bgifwrsb5np2bnd5a7wmyrd8y4dqd9-wxHexEditor-0.24...
/nix/store/r1bgifwrsb5np2bnd5a7wmyrd8y4dqd9-wxHexEditor-0.24
/nix/store/sj6q72frpw0w82y616z74sdhbhg52yib-exrtools-0.4
/nix/store/xd3zk56jvdkwmas98r7nhs73apqpkn24-gnuclad-0.2.4
/nix/store/hx8p4xmp8yj6ffv7a4yv472fff5lgpab-nix-tour-0.0.1
/nix/store/9lvl4kv83n5d5x54nbnykiifxv708b5g-xrandr-invert-colors-0.01

@GrahamcOfBorg
Copy link

Failure on x86_64-linux (full log)

Attempted: altcoins.mist, infamousPlugins, manuskript, neovim-remote

The following builds were skipped because they don't evaluate on x86_64-linux: swh-lv2

Partial log (click to expand)

[9334/17795] CXX obj/v8/v8_builtins_generators/keyed-store-generic.o
[9335/17795] CXX obj/v8/v8_builtins_generators/setup-interpreter-internal.o
[9336/17795] CXX obj/v8/v8_builtins_generators/interpreter-intrinsics-generator.o
[9337/17795] STAMP obj/v8/v8_builtins_setup.inputdeps.stamp
[9338/17795] CXX obj/v8/v8_builtins_generators/interpreter-assembler.o
[9339/17795] CXX obj/v8/v8_builtins_generators/interpreter-generator.o
building of '/nix/store/ydniya358jhjz76fzh6wbamsa0gqvpkh-qtwebengine-5.10.1.drv' timed out after 1800 seconds
cannot build derivation '/nix/store/qca1rqcbjpjxyyii62f6c0p2jksl8d9x-python3.6-PyQt-5.10.1.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/02bi1fjik8aqwzx0adgaavkdcy1c57hk-manuskript-0.3.0.drv': 1 dependencies couldn't be built
error: build of '/nix/store/02bi1fjik8aqwzx0adgaavkdcy1c57hk-manuskript-0.3.0.drv' failed

@GrahamcOfBorg
Copy link

Failure on aarch64-linux (full log)

Attempted: coyim, salut_a_toi, weechat, gwyddion, ripser

The following builds were skipped because they don't evaluate on aarch64-linux: uzbl

Partial log (click to expand)

symbolically linking /nix/store/brf1ldbp9glzbdg1azvfpsb0kq17nrrm-salut-a-toi-0.6.1/lib/python2.7/site-packages/sat/sat.sh -> /nix/store/brf1ldbp9glzbdg1azvfpsb0kq17nrrm-salut-a-toi-0.6.1/bin/sat
glibPreFixupPhase
post-installation fixup
shrinking RPATHs of ELF executables and libraries in /nix/store/brf1ldbp9glzbdg1azvfpsb0kq17nrrm-salut-a-toi-0.6.1
strip is /nix/store/8yfik687kfccisxnad42j19lfb7ij9b4-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/brf1ldbp9glzbdg1azvfpsb0kq17nrrm-salut-a-toi-0.6.1/lib  /nix/store/brf1ldbp9glzbdg1azvfpsb0kq17nrrm-salut-a-toi-0.6.1/bin
patching script interpreter paths in /nix/store/brf1ldbp9glzbdg1azvfpsb0kq17nrrm-salut-a-toi-0.6.1
/nix/store/brf1ldbp9glzbdg1azvfpsb0kq17nrrm-salut-a-toi-0.6.1/lib/python2.7/site-packages/sat/sat.sh: interpreter directive changed from "/bin/sh" to "/nix/store/vnb8q2h7951gd551nm2vq2g6n8296g5b-bash-4.4-p19/bin/sh"
checking for references to /build in /nix/store/brf1ldbp9glzbdg1azvfpsb0kq17nrrm-salut-a-toi-0.6.1...
�[31;1merror:�[0m build of '/nix/store/qjwnap1zahjqx7zwnyw0w1s6p97kv2di-coyim-0.3.7_1.drv' failed

@GrahamcOfBorg
Copy link

Failure on aarch64-linux (full log)

Attempted: infamousPlugins, manuskript, neovim-remote

The following builds were skipped because they don't evaluate on aarch64-linux: altcoins.mist, swh-lv2

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/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtNetwork/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtNetwork/5.10.1/QtNetwork -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtGui/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtSql/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtSql/5.10.1/QtSql -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtCore/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtNetwork -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtGui -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtSql -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtCore -I.moc -I/nix/store/xd7dldakw0jyyysfiim04clxprhaa2cm-mesa-noglu-18.0.3-dev/include -I/nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-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/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtNetwork/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtNetwork/5.10.1/QtNetwork -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtGui/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtSql/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtSql/5.10.1/QtSql -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtCore/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtNetwork -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtGui -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtSql -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtCore -I.moc -I/nix/store/xd7dldakw0jyyysfiim04clxprhaa2cm-mesa-noglu-18.0.3-dev/include -I/nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-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/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtNetwork/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtNetwork/5.10.1/QtNetwork -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtGui/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtSql/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtSql/5.10.1/QtSql -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtCore/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtNetwork -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtGui -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtSql -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtCore -I.moc -I/nix/store/xd7dldakw0jyyysfiim04clxprhaa2cm-mesa-noglu-18.0.3-dev/include -I/nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-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/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtNetwork/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtNetwork/5.10.1/QtNetwork -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtGui/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtGui/5.10.1/QtGui -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtSql/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtSql/5.10.1/QtSql -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtCore/5.10.1 -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtCore/5.10.1/QtCore -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtNetwork -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtGui -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtSql -isystem /nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-qtbase-5.10.1-dev/include/QtCore -I.moc -I/nix/store/xd7dldakw0jyyysfiim04clxprhaa2cm-mesa-noglu-18.0.3-dev/include -I/nix/store/kb7kw1cv9rlg9g3ql5y16h1fmhmr8qn2-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/assflnfdph987zg003vbiabkb3wx2n59-qtlocation-5.10.1.drv' timed out after 3600 seconds
cannot build derivation '/nix/store/jjff9rhq2pxkwsdq7pv8gri982pls6cc-qtwebengine-5.10.1.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/khp2na6kbssfbjk8hd38p4asm37n2shl-qtwebkit-5.9.1.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/20hkyihl51ck8qjwji3rapyrn7gmnhd1-python3.6-PyQt-5.10.1.drv': 2 dependencies couldn't be built
cannot build derivation '/nix/store/nn4878m3yaskf5azk8q7qz5zhbxvkjdi-manuskript-0.3.0.drv': 1 dependencies couldn't be built
�[31;1merror:�[0m build of '/nix/store/nn4878m3yaskf5azk8q7qz5zhbxvkjdi-manuskript-0.3.0.drv' failed

Copy link
Member

@FRidh FRidh left a comment

Choose a reason for hiding this comment

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

I checked the changes and they seem good. Note there is a version bump inside as well.

in

stdenv.mkDerivation rec {
name = "simgrid-${version}";
version = "3.17";
version = "3.19.1";
Copy link
Member

Choose a reason for hiding this comment

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

version bump

Copy link
Member Author

Choose a reason for hiding this comment

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

Yes, sorry for not mentioning that in the PR text it used to be more clear before I fixed the merge conflicts with master. I'll move this into it's own PR.

@ryantm
Copy link
Member Author

ryantm commented May 28, 2018

I moved the simgrid version bump to its own PR. #41178

@ryantm ryantm mentioned this pull request May 28, 2018
6 tasks
@matthewbauer matthewbauer merged commit 6cc070d into NixOS:master May 28, 2018
@ryantm ryantm deleted the name-format branch May 28, 2018 19:50
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

6 participants