Commit Graph

25276 Commits

Author SHA1 Message Date
Bastian Köcher 78b59ff8e8 gst-libav: 1.12.3 -> 1.14.0 2018-04-04 17:25:39 +02:00
Bastian Köcher 222883a62f gst-editing-services: 1.12.3 -> 1.14.0 2018-04-04 17:25:39 +02:00
Bastian Köcher 1e71bcff93 gst-plugins-ugly: 1.12.3 -> 1.14.0 2018-04-04 17:25:39 +02:00
Bastian Köcher cd28a5e233 gst-plugins-bad: 1.12.3 -> 1.14.0 2018-04-04 17:25:39 +02:00
Bastian Köcher d18d0c2f30 gst-plugins-good: 1.12.3 -> 1.14.0 2018-04-04 17:25:39 +02:00
Bastian Köcher 346ab3dc29 gst-plugins-base: 1.12.3 -> 1.14.0 2018-04-04 17:25:39 +02:00
Bastian Köcher db2977ad51 gstreamer: 1.12.3 -> 1.14.0 2018-04-04 17:25:39 +02:00
Silvan Mosberger 336ef91339
rocksdb: Disable aarch64
Because the build for it is broken
2018-04-04 17:08:52 +02:00
Tuomas Tynkkynen af16d71e88 gsl: Disable tests on aarch64
https://hydra.nixos.org/build/70700906

I opened an upstream bug, but their bug system is e-mail based and I
haven't got a single reply which contains an web link :(
2018-04-04 16:54:39 +03:00
Jörg Thalheim e7d77fecfe
Merge pull request #38242 from Mic92/lightstep-tracer-cpp
lightstep-tracer-cpp: mark as broken
2018-04-04 11:57:55 +01:00
Jörg Thalheim 1ba44cc957
Merge pull request #37684 from Ralith/vulkan
vulkan-loader: 1.0.61.1 -> 1.1.70.0
2018-04-04 11:18:22 +01:00
Jörg Thalheim a88ad6c679
Merge pull request #38417 from marsam/feature/enable-libtorrent-xmlrpc-darwin
Enable libtorrent and xmlrpc-c on darwin
2018-04-04 09:06:01 +01:00
Matthew Bauer d434365614 mpfr: remove unused patch 2018-04-03 22:30:33 -05:00
Mario Rodas eb6a85e03d xmlrpc-c: enable darwin build 2018-04-03 20:30:51 -05:00
Silvan Mosberger 3f9876a253
rocksdb_lite: Fix 2018-04-04 03:23:24 +02:00
John Ericson adaa110a72 binutils: No more darwin conditionals
Since at least d7bddc27b2, we've had a
situation where one should depend on:

 - `stdenv.cc.bintools`: for executables at build time
 - `libbfd` or `libiberty`: for those libraries
 - `targetPackages.cc.bintools`: for exectuables at *run* time
 - `binutils`: only for specifically GNU Binutils's executables,
   regardless of the host platform, at run time.

and that commit cleaned up this usage to reflect that. This PR flips the
switch so that:

 - `binutils` is indeed unconditionally GNU Binutils
 - `binutils-raw`, which previously served that role, is gone.

so that the correct usage will be enforced going forward and everything
is simple.

N.B. In a few cases `binutils-unwrapped` (which before and now was
unconditionally actual GNU binutils), rather than `binutils` was used to
replace old `binutils-raw` as it is friendly towards some cross
compilation usage by avoiding a reference to the next bootstrapping
change.
2018-04-03 13:34:52 -04:00
Jan Tojnar 817c086642
Merge pull request #38392 from hedning/gvfs-fix
gvfs: fix non-deterministic build failure
2018-04-03 18:03:54 +02:00
Tor Hedin Brønner ebda67e15f gvfs: fix non-deterministic build failure 2018-04-03 15:29:24 +02:00
Will Dietz 231cdaf159 mesa: 17.3.6 -> 17.3.7 2018-04-03 08:11:26 -05:00
Maximilian Bosch a770159b76
Revert "dlib: 19.9 -> 19.10"
This reverts commit 7ec4573f4c.
2018-04-03 14:45:54 +02:00
Will Dietz fd1b47a47c
Merge pull request #38217 from r-ryantm/auto-update/libdrm
libdrm: 2.4.90 -> 2.4.91

Release announcement: https://lists.freedesktop.org/archives/dri-devel/2018-March/168156.html

libdrm newer than 2.4.90 (or older, actually) is required for pending mesa bump.
2018-04-03 07:32:56 -05:00
Tor Hedin Brønner 5058529572 webkitgtk: fix non-deterministic build failure
The build sometimes fails, mostly when using a single core. This is a simple
stopgap, see upstream bug: https://bugs.webkit.org/show_bug.cgi?id=183788
2018-04-03 11:52:47 +02:00
Eelco Dolstra 6b27ae33c5
Merge pull request #38261 from r-ryantm/auto-update/aws-sdk-cpp
aws-sdk-cpp: 1.4.15 -> 1.4.24
2018-04-03 11:13:59 +02:00
Tuomas Tynkkynen 747ebe3f66 Merge remote-tracking branch 'upstream/master' into staging
Conflicts:
	pkgs/top-level/all-packages.nix
2018-04-03 02:22:54 +03:00
Will Dietz f48197ead5
Merge pull request #38168 from dtzWill/fix/epoxy-libgl-path
epoxy: explicitly search libGL path as fallback
2018-04-02 14:49:35 -05:00
Will Dietz 503f8efbcd epoxy: explicitly search libGL path as fallback
Don't rely on questionable impact of DT_RPATH on dlopen().

This is a bit of a messy subject, but probably the clearest
reference to motivate *not* relying on how dlopen() behaves
in the presence of RPATH or RUNPATH is the following:

https://sourceware.org/ml/libc-hacker/2002-11/msg00011.html

FWIW the dlopen() manpage only mentions the the RPATH
and RUNPATH in the "executable file for the calling program";
no mention of the executable files for libraries--
this has been brought to the attention of the relevant
parties and AFAICT nothing has been done.

The best reference for glibc behavior is
apparently to ... "try it and see".
Luckily a generous soul did exactly that
and reported the findings:

https://www.spinics.net/lists/linux-man/msg02291.html

Qt wrote on the subject a bit when they were bit by this,
linking to the above articles (directly or indirectly).

See:
http://blog.qt.io/blog/2011/10/28/rpath-and-runpath/

--------

Since we know the path of libGL at build-time for libepoxy,
there's a simple solution we can use to avoid all of this:
simply teach libepoxy to explicitly look in the libGL path.

This commit patches libepoxy to accomplish this,
looking to "LIBGL_PATH" as a fallback if it cannot find
the libraries otherwise.

---------

This fixes use of libepoxy w/musl on NixOS!
2018-04-02 12:35:37 -05:00
R. RyanTM 2a13e8fdb2 alembic: 1.7.6 -> 1.7.7
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/alembic/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/739vhfkmanak88f4g6yzqkrsid2mi59r-alembic-1.7.7-bin/bin/abcls -h` got 0 exit code
- ran `/nix/store/739vhfkmanak88f4g6yzqkrsid2mi59r-alembic-1.7.7-bin/bin/abcls --help` got 0 exit code
- ran `/nix/store/739vhfkmanak88f4g6yzqkrsid2mi59r-alembic-1.7.7-bin/bin/abcls help` got 0 exit code
- ran `/nix/store/739vhfkmanak88f4g6yzqkrsid2mi59r-alembic-1.7.7-bin/bin/abctree -h` got 0 exit code
- ran `/nix/store/739vhfkmanak88f4g6yzqkrsid2mi59r-alembic-1.7.7-bin/bin/abctree --help` got 0 exit code
- ran `/nix/store/739vhfkmanak88f4g6yzqkrsid2mi59r-alembic-1.7.7-bin/bin/abcconvert --help` got 0 exit code
- found 1.7.7 with grep in /nix/store/739vhfkmanak88f4g6yzqkrsid2mi59r-alembic-1.7.7-bin
- directory tree listing: https://gist.github.com/ef5ac862933e11b24f7c82cf0d0c4b16
2018-04-02 01:06:13 +02:00
Austin Seipp ebbf7078e2 nixpkgs: remove ancient 'classpath' package
This is the only package that still needs ECJ and has no dependencies.
It's ancient and unmaintained and should just be removed.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-04-01 15:18:47 -05:00
adisbladis 4df450ef28
Merge pull request #38275 from MikePlayle/master
libamqpcpp: 2.7.4 -> 3.0.0
2018-04-01 23:16:21 +08:00
Vladimír Čunát a48f50641c
lmdb: patch-out hardcoded compiler 2018-04-01 11:09:48 +02:00
R. RyanTM b5b314c137 lmdb: 0.9.21 -> 0.9.22
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/lmdb/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/lycr0rb3lgdhnjfsl44wv9vw74gpsh44-lmdb-0.9.22-bin/bin/mdb_stat -V` and found version 0.9.22
- ran `/nix/store/lycr0rb3lgdhnjfsl44wv9vw74gpsh44-lmdb-0.9.22-bin/bin/mdb_copy -V` and found version 0.9.22
- ran `/nix/store/lycr0rb3lgdhnjfsl44wv9vw74gpsh44-lmdb-0.9.22-bin/bin/mdb_dump -V` and found version 0.9.22
- ran `/nix/store/lycr0rb3lgdhnjfsl44wv9vw74gpsh44-lmdb-0.9.22-bin/bin/mdb_load -V` and found version 0.9.22
- found 0.9.22 with grep in /nix/store/lycr0rb3lgdhnjfsl44wv9vw74gpsh44-lmdb-0.9.22-bin
- directory tree listing: https://gist.github.com/f4d443d41dd66aa5f5038de9319c607d
2018-04-01 01:31:03 -07:00
Daiderd Jordan 7a33e5727b
Merge pull request #38157 from aperiodic/gflags-darwin-fix
gflags: fix build on case-insensitive filesystems
2018-04-01 09:23:43 +02:00
lewo 4a6d6373c8
Merge pull request #37377 from guibou/guibou_add_gcompris
Add `gcompris` educational package
2018-04-01 09:14:24 +02:00
Mike Playle 4247776e08 libamqpcpp: 2.7.4 -> 3.0.0 2018-04-01 01:52:55 +01:00
Matthew Justin Bauer 5090611d3a
Merge pull request #37973 from ryantm/auto-update/petsc
petsc: 3.8.3 -> 3.8.4
2018-03-31 19:23:44 -05:00
Matthew Justin Bauer c2018e4a11
Merge pull request #37325 from ryantm/auto-update/psqlodbc
unixODBCDrivers.psql: 09.05.0210 -> 10.01.0000
2018-03-31 19:17:30 -05:00
R. RyanTM 97cfd915a5 aws-sdk-cpp: 1.4.15 -> 1.4.24
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/aws-sdk-cpp/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.4.24 with grep in /nix/store/l5b5v0apdlpjby67kzzrvi6gqfvccal8-aws-sdk-cpp-1.4.24
- directory tree listing: https://gist.github.com/a9ed6bbccf52e2bbd300e219ff1f892e
2018-03-31 15:12:27 -07:00
Dan Lidral-Porter 66bbee3b81 gflags: build on case-insensitive FSs, add meta
Darwin machines come with a case-insensitive filesystem by default. The
gflags package's source contains a file 'BUILD' and the build process
attempts to create a directory called 'build', which fails on
case-insensitive filesystems.

Add a prePatch hook to rename the BUILD file (which is for use with an
unrelated build tool) to something that doesn't conflict with the
'build' directory. This hook allows this derivation to be built on
case-insensitive filesystems.

Add metadata to the derivation because previously it had none.
2018-03-31 13:52:28 -07:00
R. RyanTM 9b784e9309 itk: 4.12.2 -> 4.13.0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/itk/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 4.13.0 with grep in /nix/store/9dfpbhp02y597y9zw3xvdcjsb8w3gqjv-itk-4.13.0
- directory tree listing: https://gist.github.com/4a6da5cc90a5718caa480eba957def8f
2018-03-31 20:26:25 +01:00
Pascal Wittmann 776256b20a
Merge pull request #38243 from r-ryantm/auto-update/gdcm
gdcm: 2.8.4 -> 2.8.5
2018-03-31 21:17:37 +02:00
lewo fb72ee1d2b
Merge pull request #38222 from r-ryantm/auto-update/json-c
json_c: 0.13 -> 0.13.1
2018-03-31 20:03:16 +02:00
Jörg Thalheim eea21b2835 lightstep-tracer-cpp: mark as broken
needs an update + https://github.com/opentracing/opentracing-cpp
2018-03-31 18:22:54 +01:00
R. RyanTM aa753ed896 gdcm: 2.8.4 -> 2.8.5
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/gdcm/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcm2vtk -h` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcm2vtk --help` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcm2vtk -v` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcm2vtk --version` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcm2vtk -h` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcm2vtk --help` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmviewer -h` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmviewer --help` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmviewer help` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmviewer -v` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmviewer --version` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmviewer version` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmviewer -h` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmviewer --help` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmviewer help` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmdump -h` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmdump --help` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmdump -v` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmdump --version` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmdump -h` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmdump --help` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmraw -h` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmraw --help` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmraw -v` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmraw --version` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmraw -h` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmraw --help` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmscanner -h` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmscanner --help` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmscanner -v` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmscanner --version` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmscanner -h` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmscanner --help` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmanon -h` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmanon --help` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmanon -v` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmanon --version` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmanon -h` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmanon --help` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmgendir -h` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmgendir --help` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmgendir -v` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmgendir --version` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmgendir -h` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmgendir --help` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmimg -h` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmimg --help` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmimg -v` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmimg --version` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmimg -h` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmimg --help` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmconv -h` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmconv --help` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmconv -v` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmconv --version` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmconv -h` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmconv --help` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmtar -h` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmtar --help` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmtar -v` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmtar --version` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmtar -h` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmtar --help` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcminfo -h` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcminfo --help` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcminfo -v` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcminfo --version` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcminfo -h` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcminfo --help` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmscu -h` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmscu --help` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmscu -v` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmscu --version` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmscu -h` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmscu --help` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmpap3 -h` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmpap3 --help` got 0 exit code
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmpap3 -v` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmpap3 --version` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmpap3 -h` and found version 2.8.5
- ran `/nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5/bin/gdcmpap3 --help` and found version 2.8.5
- found 2.8.5 with grep in /nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5
- found 2.8.5 in filename of file in /nix/store/ad2zv13plf5b02jqmbfamm9rj4nbf8ff-gdcm-2.8.5
- directory tree listing: https://gist.github.com/394151986c20ad18aa843271bc40a48f
2018-03-31 10:14:27 -07:00
Ryan Mulligan 3051ddd49d libqalculate: 2.2.1 -> 2.3.0
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/libqalculate/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/llqc0hh85xfdxqzkwzxqxhjjjck4vbh7-libqalculate-2.3.0/bin/qalc -h` got 0 exit code
- ran `/nix/store/llqc0hh85xfdxqzkwzxqxhjjjck4vbh7-libqalculate-2.3.0/bin/qalc --help` got 0 exit code
- ran `/nix/store/llqc0hh85xfdxqzkwzxqxhjjjck4vbh7-libqalculate-2.3.0/bin/qalc help` got 0 exit code
- ran `/nix/store/llqc0hh85xfdxqzkwzxqxhjjjck4vbh7-libqalculate-2.3.0/bin/qalc -v` and found version 2.3.0
- ran `/nix/store/llqc0hh85xfdxqzkwzxqxhjjjck4vbh7-libqalculate-2.3.0/bin/qalc --version` and found version 2.3.0
- found 2.3.0 with grep in /nix/store/llqc0hh85xfdxqzkwzxqxhjjjck4vbh7-libqalculate-2.3.0
- directory tree listing: https://gist.github.com/6f930e6da5dc3ef9c09229cc76f36a31
2018-03-31 17:42:47 +02:00
R. RyanTM b795452499 json_c: 0.13 -> 0.13.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/json-c/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 0.13.1 with grep in /nix/store/3ckha7sbyy0la7qswa3b01n3wgnccqsf-json-c-0.13.1
- directory tree listing: https://gist.github.com/cad3ba1104556e76a7088a0fd5427df9
2018-03-31 06:17:01 -07:00
R. RyanTM c40d1d80ac libdrm: 2.4.90 -> 2.4.91
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/libdrm/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 2.4.91 with grep in /nix/store/rff4bpz0j9w5fgxsd5qq1vdv5wpdlwxy-libdrm-2.4.91
- directory tree listing: https://gist.github.com/c13751993f64b3543f93979f9450e5d1
2018-03-31 05:45:50 -07:00
R. RyanTM 9f447ca367 rdkafka: 0.11.3 -> 0.11.4
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/rdkafka/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 0.11.4 with grep in /nix/store/p7dbh8kabl3bqr28icnkzp55s6636mpl-rdkafka-0.11.4
- directory tree listing: https://gist.github.com/ab8b067a5f31e07af4ed6b1dbdc1a8a4
2018-03-31 05:33:53 -07:00
Ryan Mulligan 91c162e66a libmysqlconnectorcpp: 1.1.7 -> 1.1.9
Semi-automatic update. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.1.9 with grep in /nix/store/vj6fm6qlsf14jlmlhwdyla240jqa6i4h-libmysqlconnectorcpp-1.1.9
- found 1.1.9 in filename of file in /nix/store/vj6fm6qlsf14jlmlhwdyla240jqa6i4h-libmysqlconnectorcpp-1.1.9
2018-03-31 12:23:49 +02:00
R. RyanTM 2c0a5635d3 opendht: 1.6.0 -> 1.6.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/opendht/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/8ma5flfjdkb4gs01vyc35mfmi2rzmm12-opendht-1.6.1/bin/dhtnode -h` got 0 exit code
- ran `/nix/store/8ma5flfjdkb4gs01vyc35mfmi2rzmm12-opendht-1.6.1/bin/dhtnode --help` got 0 exit code
- ran `/nix/store/8ma5flfjdkb4gs01vyc35mfmi2rzmm12-opendht-1.6.1/bin/dhtchat -h` got 0 exit code
- ran `/nix/store/8ma5flfjdkb4gs01vyc35mfmi2rzmm12-opendht-1.6.1/bin/dhtchat --help` got 0 exit code
- ran `/nix/store/8ma5flfjdkb4gs01vyc35mfmi2rzmm12-opendht-1.6.1/bin/dhtscanner -h` got 0 exit code
- ran `/nix/store/8ma5flfjdkb4gs01vyc35mfmi2rzmm12-opendht-1.6.1/bin/dhtscanner --help` got 0 exit code
- found 1.6.1 with grep in /nix/store/8ma5flfjdkb4gs01vyc35mfmi2rzmm12-opendht-1.6.1
- directory tree listing: https://gist.github.com/2fabb2b68bb3484aee392ab952c5a428
2018-03-31 01:01:17 -07:00
Will Dietz 2367250cfb libglvnd: patch from upstream for libdl 2018-03-30 23:27:07 -05:00
John Wiegley 80e730c9a4 Allow some packages to build on darwin as well 2018-03-30 15:39:25 -07:00
Jan Tojnar c4e848197f
libvisio: fix license 2018-03-31 00:24:44 +02:00
Ryan Mulligan 99e0722657
libvisio: 0.1.3 -> 0.1.6
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/libvisio/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/bm8rhp6ljq7n0iqhpn4f1j3p013ps704-libvisio-0.1.6/bin/vsd2raw --version` and found version 0.1.6
- ran `/nix/store/bm8rhp6ljq7n0iqhpn4f1j3p013ps704-libvisio-0.1.6/bin/vss2raw --version` and found version 0.1.6
- ran `/nix/store/bm8rhp6ljq7n0iqhpn4f1j3p013ps704-libvisio-0.1.6/bin/vsd2xhtml --version` and found version 0.1.6
- ran `/nix/store/bm8rhp6ljq7n0iqhpn4f1j3p013ps704-libvisio-0.1.6/bin/vss2xhtml --version` and found version 0.1.6
- ran `/nix/store/bm8rhp6ljq7n0iqhpn4f1j3p013ps704-libvisio-0.1.6/bin/vsd2text --version` and found version 0.1.6
- ran `/nix/store/bm8rhp6ljq7n0iqhpn4f1j3p013ps704-libvisio-0.1.6/bin/vss2text --version` and found version 0.1.6
- found 0.1.6 with grep in /nix/store/bm8rhp6ljq7n0iqhpn4f1j3p013ps704-libvisio-0.1.6
- directory tree listing: https://gist.github.com/a7d83a73b3560d8cfa739ca582d98dcd

Manually cleaned up & split outputs.
2018-03-31 00:09:10 +02:00
Dmitry Kalinkin 4810d54555 rivet: 2.6.0 -> 2.6.0
upstream just replaced the tarball with a new version without bumping anything
2018-03-30 20:23:37 +01:00
R. RyanTM 3f36f6095f zziplib: 0.13.68 -> 0.13.69
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/zziplib/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzcat -h` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzcat --help` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzcat help` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzcat --version` and found version 0.13.69
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzdir --help` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzdir --version` and found version 0.13.69
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzxorcat -h` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzxorcat --help` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzxorcat help` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzxorcat --version` and found version 0.13.69
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzxordir -h` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzxordir --help` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzxordir --version` and found version 0.13.69
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzxorcopy -h` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzxorcopy --help` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/zzxorcopy --version` and found version 0.13.69
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzzip --help` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzzip -v` and found version 0.13.69
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzzip --version` and found version 0.13.69
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzzip-mix --help` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzzip-mix -v` and found version 0.13.69
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzzip-mix --version` and found version 0.13.69
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzzip-mem --help` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzzip-mem -v` and found version 0.13.69
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzzip-mem --version` and found version 0.13.69
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzzip-big --help` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzzip-big -v` and found version 0.13.69
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzzip-big --version` and found version 0.13.69
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzip-mem -h` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzip-mem --help` got 0 exit code
- ran `/nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69/bin/unzip-mem --version` and found version 0.13.69
- found 0.13.69 with grep in /nix/store/9lh4yxh3lq6mv354jvbd3gqjv4dha740-zziplib-0.13.69
- directory tree listing: https://gist.github.com/fec112f9114c98b118a59917224af5ff
2018-03-30 20:07:49 +01:00
Jan Tojnar 977737a997
Merge pull request #38128 from r-ryantm/auto-update/umockdev
umockdev: 0.11.1 -> 0.11.2
2018-03-30 21:05:18 +02:00
Ryan Mulligan e28170ccc8 hpx: 1.0.0 -> 1.1.0
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/hpx/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/xg48bc9gkcq2hyk51hxy5s7x8l0s70r9-hpx-1.1.0/bin/hpxrun.py -h` got 0 exit code
- ran `/nix/store/xg48bc9gkcq2hyk51hxy5s7x8l0s70r9-hpx-1.1.0/bin/hpxrun.py --help` got 0 exit code
- found 1.1.0 with grep in /nix/store/xg48bc9gkcq2hyk51hxy5s7x8l0s70r9-hpx-1.1.0
- found 1.1.0 in filename of file in /nix/store/xg48bc9gkcq2hyk51hxy5s7x8l0s70r9-hpx-1.1.0
- directory tree listing: https://gist.github.com/377d8c673231332bb40acb55fed39e53
2018-03-30 20:55:26 +02:00
Graham Christensen 77917ffce9
Merge pull request #37780 from bkchr/gst_rtsp_server
gst-rtsp-server: Init at 1.12.3
2018-03-30 14:42:10 -04:00
Bastian Köcher 6596abea20 Adds myself(bkchr) as maintainer of gst_rtsp_server 2018-03-30 20:29:14 +02:00
Bastian Köcher 666ea61bd1 gst-rtsp-server: Init at 1.12.3 2018-03-30 19:31:33 +02:00
R. RyanTM 579de35030 umockdev: 0.11.1 -> 0.11.2
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/umockdev/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/7lpv5i13wb3w9yzid1x1hymb4cwrjisa-umockdev-0.11.2/bin/umockdev-run -h` got 0 exit code
- ran `/nix/store/7lpv5i13wb3w9yzid1x1hymb4cwrjisa-umockdev-0.11.2/bin/umockdev-run --help` got 0 exit code
- ran `/nix/store/7lpv5i13wb3w9yzid1x1hymb4cwrjisa-umockdev-0.11.2/bin/umockdev-record -h` got 0 exit code
- ran `/nix/store/7lpv5i13wb3w9yzid1x1hymb4cwrjisa-umockdev-0.11.2/bin/umockdev-record --help` got 0 exit code
- found 0.11.2 with grep in /nix/store/7lpv5i13wb3w9yzid1x1hymb4cwrjisa-umockdev-0.11.2
- directory tree listing: https://gist.github.com/f15b0f7c88a9a3c931d00fe888311f2f
2018-03-30 09:32:16 -07:00
Guillaume Bouchard 2a0f66b258 qmlbox2d: init at 2018-03-16
This is a dependency for `gcompris`
2018-03-30 17:49:25 +02:00
kiloreux 4e81ab3425
Added libaom 2018-03-30 11:05:47 +01:00
Shea Levy 6dc900c068
libatomic_ops: 7.6.2 -> 7.6.4.
Inspired by #38083.

Closes #38083.
2018-03-30 05:57:01 -04:00
Ryan Mulligan 743e685d98 isocodes: 3.74 -> 3.79
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/iso-codes/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 3.79 with grep in /nix/store/v3cwlccrh7g5m03wj8j7fhwc9xyrdj1q-iso-codes-3.79
- directory tree listing: https://gist.github.com/0636a62cebb498fde2d51579ff9c3e99
2018-03-30 10:22:55 +01:00
Ryan Mulligan 2bb441ea25 idnkit: 1.0 -> 2.3
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/idnkit/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/i6jnwdj4yjd07jpr0v9alrvprv06qm39-idnkit-2.3/bin/idncheck -h` got 0 exit code
- ran `/nix/store/i6jnwdj4yjd07jpr0v9alrvprv06qm39-idnkit-2.3/bin/idncheck help` got 0 exit code
- ran `/nix/store/i6jnwdj4yjd07jpr0v9alrvprv06qm39-idnkit-2.3/bin/idncheck -v` and found version 2.3
- ran `/nix/store/i6jnwdj4yjd07jpr0v9alrvprv06qm39-idnkit-2.3/bin/idncmp -h` got 0 exit code
- ran `/nix/store/i6jnwdj4yjd07jpr0v9alrvprv06qm39-idnkit-2.3/bin/idncmp -v` and found version 2.3
- ran `/nix/store/i6jnwdj4yjd07jpr0v9alrvprv06qm39-idnkit-2.3/bin/idnconv2 -h` got 0 exit code
- ran `/nix/store/i6jnwdj4yjd07jpr0v9alrvprv06qm39-idnkit-2.3/bin/idnconv2 -v` and found version 2.3
- found 2.3 with grep in /nix/store/i6jnwdj4yjd07jpr0v9alrvprv06qm39-idnkit-2.3
- found 2.3 in filename of file in /nix/store/i6jnwdj4yjd07jpr0v9alrvprv06qm39-idnkit-2.3
- directory tree listing: https://gist.github.com/79f15455351ddaf8b8f16b15897f346f
2018-03-30 10:22:24 +01:00
Ryan Mulligan f713f7ff85 gecode: 5.0.0 -> 6.0.0
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/gecode/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/fzn-gecode --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/fzn-gecode --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/alpha -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/alpha --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/alpha help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/alpha --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/bacp -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/bacp --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/bacp help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/bacp --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/bibd -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/bibd --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/bibd help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/bibd --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/donald -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/donald --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/donald help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/donald --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/efpa -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/efpa --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/efpa help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/efpa --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/eq20 -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/eq20 --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/eq20 help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/eq20 --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/golomb-ruler -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/golomb-ruler --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/golomb-ruler help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/golomb-ruler --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/graph-color -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/graph-color --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/graph-color help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/graph-color --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/grocery -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/grocery --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/grocery help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/grocery --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/ind-set -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/ind-set --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/ind-set help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/ind-set --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/magic-sequence --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/magic-sequence --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/magic-square --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/magic-square --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/money -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/money --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/money help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/money --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/ortho-latin --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/ortho-latin --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/partition --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/partition --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/photo -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/photo --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/photo help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/photo --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/queens --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/queens --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/sudoku -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/sudoku --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/sudoku help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/sudoku --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/kakuro -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/kakuro --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/kakuro help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/kakuro --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/nonogram -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/nonogram --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/nonogram help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/nonogram --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/pentominoes -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/pentominoes --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/pentominoes help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/pentominoes --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/crowded-chess --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/crowded-chess --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/black-hole -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/black-hole --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/black-hole help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/black-hole --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/minesweeper -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/minesweeper --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/minesweeper help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/minesweeper --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/domino -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/domino --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/domino help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/domino --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/steel-mill --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/steel-mill --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/sports-league --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/sports-league --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/all-interval --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/all-interval --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/langford-number -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/langford-number --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/langford-number help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/langford-number --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/warehouses -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/warehouses --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/warehouses help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/warehouses --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/radiotherapy -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/radiotherapy --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/radiotherapy help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/radiotherapy --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/word-square --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/word-square --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/crossword -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/crossword --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/crossword help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/crossword --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/open-shop -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/open-shop --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/open-shop help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/open-shop --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/car-sequencing -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/car-sequencing --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/car-sequencing help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/car-sequencing --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/sat --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/sat --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/bin-packing --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/bin-packing --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/knights --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/knights --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/tsp -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/tsp --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/tsp help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/tsp --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/perfect-square -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/perfect-square --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/perfect-square help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/perfect-square --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/schurs-lemma -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/schurs-lemma --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/schurs-lemma help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/schurs-lemma --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/dominating-queens --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/dominating-queens --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/colored-matrix --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/colored-matrix --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/multi-bin-packing --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/multi-bin-packing --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/qcp --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/qcp --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/crew -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/crew --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/crew help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/crew --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/golf -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/golf --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/golf help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/golf --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/hamming -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/hamming --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/hamming help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/hamming --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/steiner --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/steiner --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/queen-armies -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/queen-armies --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/queen-armies help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/queen-armies --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/cartesian-heart --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/cartesian-heart --help` and found version 6.0.0
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/descartes-folium -h` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/descartes-folium --help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/descartes-folium help` got 0 exit code
- ran `/nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0/bin/descartes-folium --help` and found version 6.0.0
- found 6.0.0 with grep in /nix/store/39yw7af1kjv8nxb43jfmz5l3vm8czl26-gecode-6.0.0
- directory tree listing: https://gist.github.com/e064209ab25e76839d89e65c77630cf7
2018-03-30 10:21:11 +01:00
Ryan Mulligan ca54d50704 chromaprint: 1.3.2 -> 1.4.3
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/chromaprint/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.4.3 with grep in /nix/store/6x9xsd68jksc7c2y710z4wsrjwgd8wsp-chromaprint-1.4.3
- found 1.4.3 in filename of file in /nix/store/6x9xsd68jksc7c2y710z4wsrjwgd8wsp-chromaprint-1.4.3
- directory tree listing: https://gist.github.com/92fabeb9999c33c02a2f56a437b69c64
2018-03-30 10:19:46 +01:00
Ryan Mulligan fc7aa6f606 confuse: 2.7 -> 3.2.1
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/confuse/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 3.2.1 with grep in /nix/store/nbr6d47mgzxmmxymjh3rw0yc7il66wks-confuse-3.2.1
- directory tree listing: https://gist.github.com/cc2599089248ae14f15a25547413838b
2018-03-30 10:16:06 +01:00
Frederik Rietdijk 9d2ff98571 Merge remote-tracking branch 'upstream/master' into HEAD 2018-03-30 08:14:35 +02:00
Robin Gloster 01fb1af4f5
libidn2: remove dependency on ronn
This is only needed if built from the source repository, since we are
using the release tarball the generated manpage is included. This
removes the "wild" dependency on ruby very deep in the dependency tree.
(util-linux -> systemd -> libidn2 -> ronn -> ruby)
2018-03-30 01:09:27 +02:00
Pascal Wittmann cef9812b93
Merge pull request #38082 from ryantm/auto-update/libgringotts
libgringotts: 1.1.2 -> 1.2.1
2018-03-30 00:43:22 +02:00
Ryan Mulligan dd33193f4c libgringotts: 1.1.2 -> 1.2.1
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/libgringotts/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.2.1 with grep in /nix/store/9z57bh8m3wr1fjaksavpyjr8y9xanf0l-libgringotts-1.2.1
- directory tree listing: https://gist.github.com/6efcd3f0105df20d27e52a1f3e69b142
2018-03-29 15:01:16 -07:00
Michiel Leenaars 38dceb2cb8 getdns: 1.3.0 -> 1.4.1 2018-03-28 23:44:32 +01:00
Tor Hedin Brønner 70e8face4c
makeDBusConf: Look for .conf files in share/dbus-1/system.d/ too
Some packages install their dbus config files to `share/dbus-1/system.d` instead
of `etc/dbus-1/system.d`, so look in both places.
2018-03-28 20:41:06 +02:00
Jan Tojnar 025881c236
treewide: remove placeholder usage
Temporary compatibility fix, continuation of https://github.com/NixOS/nixpkgs/pull/37860
2018-03-28 19:44:33 +02:00
Shea Levy 05e375d710
Merge remote-tracking branch 'origin/master' into staging 2018-03-28 09:36:47 -04:00
Nikolay Amiantov 8330fdaa09 wlroots: fix build 2018-03-28 16:25:14 +03:00
Nikolay Amiantov 9bcc905eda wlc: fix build 2018-03-28 16:25:14 +03:00
Thomas Tuegel c7d7abc51e
Merge pull request #36320 from romildo/new.gsettings-qt
gsettings-qt: init at 0.1.20170824
2018-03-28 08:24:43 -05:00
Ryan Mulligan 85afb4e1e6 petsc: 3.8.3 -> 3.8.4
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/petsc/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/saws/getSAWs.bash -h` got 0 exit code
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/saws/getSAWs.bash --help` got 0 exit code
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/saws/getSAWs.bash help` got 0 exit code
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/petscdiff -h` got 0 exit code
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/petscdiff --help` got 0 exit code
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/petscdiff -h` and found version 3.8.4
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/petscdiff --help` and found version 3.8.4
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/update.py -h` got 0 exit code
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/update.py --help` got 0 exit code
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/update.py help` got 0 exit code
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/update.py -V` and found version 3.8.4
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/update.py -v` and found version 3.8.4
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/update.py --version` and found version 3.8.4
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/update.py version` and found version 3.8.4
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/update.py -h` and found version 3.8.4
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/update.py --help` and found version 3.8.4
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/update.py help` and found version 3.8.4
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/sendToJenkins -h` got 0 exit code
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/sendToJenkins --help` got 0 exit code
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/petscnagupgrade.py -h` got 0 exit code
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/petscnagupgrade.py --help` got 0 exit code
- ran `/nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4/bin/petscnagupgrade.py help` got 0 exit code
- found 3.8.4 with grep in /nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4
- found 3.8.4 in filename of file in /nix/store/czmq31v2xa85ql17whbn05774cncbr4a-petsc-3.8.4
- directory tree listing: https://gist.github.com/da90b8c44c7ed274deb2e1a2c7de8dad
2018-03-28 00:48:35 -07:00
Michael Raskin 6f7ded7e77
Merge pull request #37959 from ryantm/auto-update/tachyon
tachyon: 0.98.9 -> 0.99b2
2018-03-28 07:15:03 +00:00
Franz Pletz ecbf439bf0
Merge pull request #37184 from xeji/spice-gtk-fix
spice-gtk: fix symlink errors, add withPolkit option
2018-03-28 06:40:30 +00:00
Ryan Mulligan b92a9e1504 tachyon: 0.98.9 -> 0.99b2
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/tachyon/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/xpwz7yb6jqisimg2rw0xn5zh8n8i89fb-tachyon-0.99b2/bin/tachyon help` got 0 exit code
- directory tree listing: https://gist.github.com/755515ff78d7dad0ef3e73cb3333c2d4
2018-03-27 22:09:13 -07:00
Jörg Thalheim 8c2dafbccd
Merge pull request #30429 from teto/alot
[RDY] init gpg python bindings +  Alot: 0.5.1 -> 0.7.0
2018-03-28 01:03:24 +01:00
Matthew Justin Bauer 75616ceb49
Merge pull request #37840 from matthewbauer/unixtools
Cross-platform "unixtools"
2018-03-27 18:43:03 -05:00
Andreas Rammhold 34fe4bce9a
Merge pull request #37931 from andir/openssl
openssl{,1_1_0} update (1.0.2o, 1.1.0h)
2018-03-28 00:10:58 +02:00
Andreas Rammhold 72110322c0
openssl_1_1_0: 1.1.0g -> 1.1.0h (fixes CVE-2018-0739, CVE-2017-3738)
Also fixes CVE-2018-0733 but we do not support HP-UX to my knowledge :-)

Announcement at [1].

[1] https://www.openssl.org/news/secadv/20180327.txt
2018-03-27 21:31:59 +02:00
Andreas Rammhold 4bf9b4a328
openssl: 1.0.2n -> 1.0.2o (fixes CVE-2017-3738, CVE-2018-0739)
Announcement can be found at [1].

[1] https://www.openssl.org/news/secadv/20180327.txt
2018-03-27 21:31:41 +02:00
Jan Tojnar 82f6267023
treewide: remove placeholder usage
see 2abac54c03
2018-03-27 20:14:44 +02:00
Will Dietz 1c110d5285
Merge pull request #37892 from dtzWill/fix/virglrenderer-include
virglrenderer: fix missing include
2018-03-27 12:47:39 -05:00
Shea Levy cd7047c461
Merge branch 'riscv-limitations' 2018-03-27 11:32:38 -04:00
Sarah Brofeldt 048724c4af
Merge pull request #34971 from Twey/master
godot: 2.1.4 -> 3.0 + godot_headers
2018-03-27 17:29:27 +02:00
Thomas Tuegel 6cd5667d4d
Merge pull request #37889 from coreyoconnor/ninjaflags
qtwebengine: correct how NIX_BUILD_CORES is propagated to the gn ninja
2018-03-27 09:02:28 -05:00
Ryan Mulligan 7d45fff670
gegl_0_3: 0.3.28 -> 0.3.30
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/gegl/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/fn6gs9ss2l0qpxyg3w5y76bx4wlgr9q6-gegl-0.3.30/bin/gegl -h` got 0 exit code
- ran `/nix/store/fn6gs9ss2l0qpxyg3w5y76bx4wlgr9q6-gegl-0.3.30/bin/gegl --help` got 0 exit code
- ran `/nix/store/fn6gs9ss2l0qpxyg3w5y76bx4wlgr9q6-gegl-0.3.30/bin/gegl -V` and found version 0.3.30
- ran `/nix/store/fn6gs9ss2l0qpxyg3w5y76bx4wlgr9q6-gegl-0.3.30/bin/gegl --version` and found version 0.3.30
- ran `/nix/store/fn6gs9ss2l0qpxyg3w5y76bx4wlgr9q6-gegl-0.3.30/bin/gegl -h` and found version 0.3.30
- ran `/nix/store/fn6gs9ss2l0qpxyg3w5y76bx4wlgr9q6-gegl-0.3.30/bin/gegl --help` and found version 0.3.30
- found 0.3.30 with grep in /nix/store/fn6gs9ss2l0qpxyg3w5y76bx4wlgr9q6-gegl-0.3.30
- directory tree listing: https://gist.github.com/d252f515654f002ddf4d8f3301559e56
2018-03-27 14:22:34 +02:00
Shea Levy 26e8d58cb5
libseccomp: Disable only on RISC-V if Linux.
The isSeccomputable flag treated Linux without seccomp as just a
normal variant, when it really should be treated as a special case
incurring complexity debt to support.
2018-03-27 08:16:24 -04:00
Will Dietz 69cdf22aef
Merge pull request #37891 from dtzWill/fix/usbredir-werror
usbredir: -Wno-error
2018-03-26 16:34:16 -05:00
Will Dietz 4037d68db4 virglrenderer: fix missing include 2018-03-26 15:32:00 -05:00
Will Dietz 49726921d5
Merge pull request #37831 from dtzWill/fix/celt-0.5.1-disable-broken-tests
celt-0.5.1: disable tests that fail to build due to bad code
2018-03-26 15:24:45 -05:00
Will Dietz 23ace05628 usbredir: -Wno-error 2018-03-26 15:21:20 -05:00