Build with polkit and acl to enable usb redirection
in virt-viewer and virt-manager. Fixes#27199
usb redirection requires a setuid wrapper, see comment in code.
The version was bumped in #36081,
but the dependencies were not updated,
causing Vagrant to fail at runtime.
Fix the dependencies (via bundix),
and add an `installCheckPhase` to the derviation
to catch this in the future.
Don't default `doCheck` to false,
and use the default set of phases
so the phases list does not need to be overriden
in order to add checkPhase or installCheckPhase.
- The version 1.1.0 is 6 years old and was not compiling anymore with GCC 7.0
- Fixed buildInputs / nativeBuildInputs
- Set platform to linux, it does not work on OSX
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/saws/getSAWs.bash -h` got 0 exit code
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/saws/getSAWs.bash --help` got 0 exit code
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/saws/getSAWs.bash help` got 0 exit code
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/update.py -h` got 0 exit code
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/update.py --help` got 0 exit code
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/update.py help` got 0 exit code
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/update.py -V` and found version 3.8.3
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/update.py -v` and found version 3.8.3
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/update.py --version` and found version 3.8.3
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/update.py version` and found version 3.8.3
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/update.py -h` and found version 3.8.3
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/update.py --help` and found version 3.8.3
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/update.py help` and found version 3.8.3
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/petscnagupgrade.py -h` got 0 exit code
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/petscnagupgrade.py --help` got 0 exit code
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/petscnagupgrade.py help` got 0 exit code
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/sendToJenkins -h` got 0 exit code
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/sendToJenkins --help` got 0 exit code
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/sendToJenkins -h` and found version 3.8.3
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/sendToJenkins --help` and found version 3.8.3
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/petscdiff -h` got 0 exit code
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/petscdiff --help` got 0 exit code
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/petscdiff -h` and found version 3.8.3
- ran `/nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3/bin/petscdiff --help` and found version 3.8.3
- found 3.8.3 with grep in /nix/store/fgr3yvhrnvfhr0czc4ygx1mnjsrv4f4i-petsc-3.8.3
Apparently, async mode for libftdi 0.20 is allegedly disabled when using
libusb-compat wrappers, as libftdi does not really support libftdi 1.x. Because
we only ship libusb-compat, this would normally make async mode completely
unavailable.
Except distributions like Ubuntu just disable this check completely! See this
patch from Launchpad:
https://bazaar.launchpad.net/~ubuntu-branches/ubuntu/trusty/libftdi/trusty/view/head:/debian/patches/04_async_mode.diff
In the spirit of good competition (and feature parity for software that
*doesn't* support the synchronous mode, thanks to Ubuntu silently ensuring
their async-only paths work) we enable this just the same.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Semi-automatic update. These checks were performed:
- built on NixOS
- found 1.1.0 with grep in /nix/store/fxmc6jijyscbyhiyjdflbpmbf7hn9v41-readosm-1.1.0
- found 1.1.0 in filename of file in /nix/store/fxmc6jijyscbyhiyjdflbpmbf7hn9v41-readosm-1.1.0
Semi-automatic update. These checks were performed:
- built on NixOS
- found 0.24 with grep in /nix/store/9xdm9pfw8ckr8n58f2n2pz7vpz54wj72-stfl-0.24
- found 0.24 in filename of file in /nix/store/9xdm9pfw8ckr8n58f2n2pz7vpz54wj72-stfl-0.24
cc "@lovek323"
Semi-automatic update. These checks were performed:
- built on NixOS
- found 0.10.1 with grep in /nix/store/hfqs5amwgnhsmp0jbyw5fbg5vvx7n60w-liburcu-0.10.1
- found 0.10.1 in filename of file in /nix/store/hfqs5amwgnhsmp0jbyw5fbg5vvx7n60w-liburcu-0.10.1
Semi-automatic update. These checks were performed:
- built on NixOS
- found 2.0.0 with grep in /nix/store/mccg5fjzlk40fic8crh6mj0nknwmr774-soundtouch-2.0.0
- found 2.0.0 in filename of file in /nix/store/mccg5fjzlk40fic8crh6mj0nknwmr774-soundtouch-2.0.0
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/d1xb2sv0zhj3q10zrggffmsjlgl8a4n9-squirrel-sql-3.8.1/bin/squirrel-sql -h` got 0 exit code
- ran `/nix/store/d1xb2sv0zhj3q10zrggffmsjlgl8a4n9-squirrel-sql-3.8.1/bin/squirrel-sql --help` got 0 exit code
- ran `/nix/store/d1xb2sv0zhj3q10zrggffmsjlgl8a4n9-squirrel-sql-3.8.1/bin/squirrel-sql help` got 0 exit code
- found 3.8.1 with grep in /nix/store/d1xb2sv0zhj3q10zrggffmsjlgl8a4n9-squirrel-sql-3.8.1
- found 3.8.1 in filename of file in /nix/store/d1xb2sv0zhj3q10zrggffmsjlgl8a4n9-squirrel-sql-3.8.1
cc "@khumba"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/4wlhzjj8k4a49dvpzgwhll2m03hvvcz9-supercollider-3.9.1/bin/scsynth -v` and found version 3.9.1
- ran `/nix/store/4wlhzjj8k4a49dvpzgwhll2m03hvvcz9-supercollider-3.9.1/bin/supernova -h` got 0 exit code
- ran `/nix/store/4wlhzjj8k4a49dvpzgwhll2m03hvvcz9-supercollider-3.9.1/bin/supernova --help` got 0 exit code
- ran `/nix/store/4wlhzjj8k4a49dvpzgwhll2m03hvvcz9-supercollider-3.9.1/bin/supernova -v` and found version 3.9.1
- ran `/nix/store/4wlhzjj8k4a49dvpzgwhll2m03hvvcz9-supercollider-3.9.1/bin/supernova --version` and found version 3.9.1
- ran `/nix/store/4wlhzjj8k4a49dvpzgwhll2m03hvvcz9-supercollider-3.9.1/bin/sclang -h` got 0 exit code
- ran `/nix/store/4wlhzjj8k4a49dvpzgwhll2m03hvvcz9-supercollider-3.9.1/bin/sclang -v` and found version 3.9.1
- found 3.9.1 with grep in /nix/store/4wlhzjj8k4a49dvpzgwhll2m03hvvcz9-supercollider-3.9.1
Semi-automatic update. These checks were performed:
- built on NixOS
- found 2.0.4 with grep in /nix/store/dr6xvrw483jr5vgznwpjj0hxx3jq86ha-waf-2.0.4
- found 2.0.4 in filename of file in /nix/store/dr6xvrw483jr5vgznwpjj0hxx3jq86ha-waf-2.0.4
cc "@vrthra"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/vs2i1mz87r31icar1kp880wq81bk2wy5-unixODBC-2.3.5/bin/isql --help` got 0 exit code
- ran `/nix/store/vs2i1mz87r31icar1kp880wq81bk2wy5-unixODBC-2.3.5/bin/isql --version` and found version 2.3.5
- ran `/nix/store/vs2i1mz87r31icar1kp880wq81bk2wy5-unixODBC-2.3.5/bin/isql --help` and found version 2.3.5
- ran `/nix/store/vs2i1mz87r31icar1kp880wq81bk2wy5-unixODBC-2.3.5/bin/odbcinst --help` got 0 exit code
- ran `/nix/store/vs2i1mz87r31icar1kp880wq81bk2wy5-unixODBC-2.3.5/bin/odbcinst --version` and found version 2.3.5
- ran `/nix/store/vs2i1mz87r31icar1kp880wq81bk2wy5-unixODBC-2.3.5/bin/odbcinst --help` and found version 2.3.5
- ran `/nix/store/vs2i1mz87r31icar1kp880wq81bk2wy5-unixODBC-2.3.5/bin/iusql --help` got 0 exit code
- ran `/nix/store/vs2i1mz87r31icar1kp880wq81bk2wy5-unixODBC-2.3.5/bin/iusql --version` and found version 2.3.5
- ran `/nix/store/vs2i1mz87r31icar1kp880wq81bk2wy5-unixODBC-2.3.5/bin/iusql --help` and found version 2.3.5
- ran `/nix/store/vs2i1mz87r31icar1kp880wq81bk2wy5-unixODBC-2.3.5/bin/odbc_config --version` and found version 2.3.5
- found 2.3.5 with grep in /nix/store/vs2i1mz87r31icar1kp880wq81bk2wy5-unixODBC-2.3.5
- found 2.3.5 in filename of file in /nix/store/vs2i1mz87r31icar1kp880wq81bk2wy5-unixODBC-2.3.5
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/hs0xavmd2pyi30l05s20hp5q70bc63br-wiggle-1.1/bin/wiggle -h` got 0 exit code
- ran `/nix/store/hs0xavmd2pyi30l05s20hp5q70bc63br-wiggle-1.1/bin/wiggle --help` got 0 exit code
- ran `/nix/store/hs0xavmd2pyi30l05s20hp5q70bc63br-wiggle-1.1/bin/wiggle -V` and found version 1.1
- ran `/nix/store/hs0xavmd2pyi30l05s20hp5q70bc63br-wiggle-1.1/bin/wiggle --version` and found version 1.1
- found 1.1 with grep in /nix/store/hs0xavmd2pyi30l05s20hp5q70bc63br-wiggle-1.1
- found 1.1 in filename of file in /nix/store/hs0xavmd2pyi30l05s20hp5q70bc63br-wiggle-1.1
Semi-automatic update. These checks were performed:
- built on NixOS
- found 1.2.0 with grep in /nix/store/q9ifpn013p72sy6mp3b5xyrl2rjfnabw-packer-1.2.0-bin
- found 1.2.0 in filename of file in /nix/store/q9ifpn013p72sy6mp3b5xyrl2rjfnabw-packer-1.2.0-bin
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/whxh0pc4qfz97dhxsn8ya9pwy1w9msz1-pythia-8.226/bin/pythia8-config -h` got 0 exit code
- ran `/nix/store/whxh0pc4qfz97dhxsn8ya9pwy1w9msz1-pythia-8.226/bin/pythia8-config --help` got 0 exit code
- ran `/nix/store/whxh0pc4qfz97dhxsn8ya9pwy1w9msz1-pythia-8.226/bin/pythia8-config help` got 0 exit code
- ran `/nix/store/whxh0pc4qfz97dhxsn8ya9pwy1w9msz1-pythia-8.226/bin/pythia8-config -V` and found version 8.226
- ran `/nix/store/whxh0pc4qfz97dhxsn8ya9pwy1w9msz1-pythia-8.226/bin/pythia8-config -v` and found version 8.226
- ran `/nix/store/whxh0pc4qfz97dhxsn8ya9pwy1w9msz1-pythia-8.226/bin/pythia8-config --version` and found version 8.226
- ran `/nix/store/whxh0pc4qfz97dhxsn8ya9pwy1w9msz1-pythia-8.226/bin/pythia8-config version` and found version 8.226
- ran `/nix/store/whxh0pc4qfz97dhxsn8ya9pwy1w9msz1-pythia-8.226/bin/pythia8-config help` and found version 8.226
- found 8.226 with grep in /nix/store/whxh0pc4qfz97dhxsn8ya9pwy1w9msz1-pythia-8.226
- found 8.226 in filename of file in /nix/store/whxh0pc4qfz97dhxsn8ya9pwy1w9msz1-pythia-8.226
cc "@veprbl"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/mozcerts-qt5 -h` got 0 exit code
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/mozcerts-qt5 --help` got 0 exit code
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/mozcerts-qt5 help` got 0 exit code
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/qcatool-qt5 -h` got 0 exit code
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/qcatool-qt5 --help` got 0 exit code
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/qcatool-qt5 help` got 0 exit code
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/qcatool-qt5 -v` and found version 2.1.3
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/qcatool-qt5 --version` and found version 2.1.3
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/qcatool-qt5 version` and found version 2.1.3
- found 2.1.3 with grep in /nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3
- found 2.1.3 in filename of file in /nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3
cc "@ttuegel"
Semi-automatic update. These checks were performed:
- built on NixOS
- found 1.6.62 with grep in /nix/store/4ss521i0480p31fgmlqkv4rcrrfv8zw2-opencollada-1.6.62
- found 1.6.62 in filename of file in /nix/store/4ss521i0480p31fgmlqkv4rcrrfv8zw2-opencollada-1.6.62
cc "@eelco"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/jr9kc24yp5cxdsk6m0f7iiqviz4q5s8y-pew-1.1.2/bin/.pew-wrapped version` and found version 1.1.2
- ran `/nix/store/jr9kc24yp5cxdsk6m0f7iiqviz4q5s8y-pew-1.1.2/bin/pew version` and found version 1.1.2
- found 1.1.2 with grep in /nix/store/jr9kc24yp5cxdsk6m0f7iiqviz4q5s8y-pew-1.1.2
- found 1.1.2 in filename of file in /nix/store/jr9kc24yp5cxdsk6m0f7iiqviz4q5s8y-pew-1.1.2
cc "@berdario"
Semi-automatic update. These checks were performed:
- built on NixOS
- found 1.1.5 with grep in /nix/store/wfbq0x34zgwrazsib5pv5wbv1zb1yrpk-resolv_wrapper-1.1.5
- found 1.1.5 in filename of file in /nix/store/wfbq0x34zgwrazsib5pv5wbv1zb1yrpk-resolv_wrapper-1.1.5
cc "@wkennington"
Semi-automatic update. These checks were performed:
- built on NixOS
- found 5.10.3 in filename of file in /nix/store/4db33wajzz0lsdms0bnpqizl280l3kwc-rocksdb-5.10.3
cc "@adev @wkennington"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/cifmnprcfrgiz551lg7n5js4fblmhrr4-sslmate-1.6.0/bin/sslmate help` got 0 exit code
- ran `/nix/store/cifmnprcfrgiz551lg7n5js4fblmhrr4-sslmate-1.6.0/bin/sslmate version` and found version 1.6.0
- found 1.6.0 with grep in /nix/store/cifmnprcfrgiz551lg7n5js4fblmhrr4-sslmate-1.6.0
- found 1.6.0 in filename of file in /nix/store/cifmnprcfrgiz551lg7n5js4fblmhrr4-sslmate-1.6.0
cc "@domenkozar"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/g7j0xbs2izhmr4jy7zj4q7b2nqgs5wn2-sysbench-1.0.13/bin/sysbench --help` got 0 exit code
- ran `/nix/store/g7j0xbs2izhmr4jy7zj4q7b2nqgs5wn2-sysbench-1.0.13/bin/sysbench --version` and found version 1.0.13
- found 1.0.13 with grep in /nix/store/g7j0xbs2izhmr4jy7zj4q7b2nqgs5wn2-sysbench-1.0.13
- found 1.0.13 in filename of file in /nix/store/g7j0xbs2izhmr4jy7zj4q7b2nqgs5wn2-sysbench-1.0.13
Semi-automatic update. These checks were performed:
- built on NixOS
- found 1.2.2 with grep in /nix/store/91iz6pnbmjn0lc0f6iyy22wavngbbxhm-tclap-1.2.2
- found 1.2.2 in filename of file in /nix/store/91iz6pnbmjn0lc0f6iyy22wavngbbxhm-tclap-1.2.2
Semi-automatic update. These checks were performed:
- built on NixOS
- found 2.0.0 with grep in /nix/store/llszhnm3pshnbmp7cra1bkal6njag3nn-unittest-cpp-2.0.0
- found 2.0.0 in filename of file in /nix/store/llszhnm3pshnbmp7cra1bkal6njag3nn-unittest-cpp-2.0.0
cc ""
Semi-automatic update. These checks were performed:
- built on NixOS
- found 0.9.35 with grep in /nix/store/i0wf9rm4gv5l2sd6rfssr7nql1dkpdx4-tevent-0.9.35
- found 0.9.35 in filename of file in /nix/store/i0wf9rm4gv5l2sd6rfssr7nql1dkpdx4-tevent-0.9.35
cc "@wkennington"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/3dmmnilw4rsyrnz164vy04advblps0h5-tdb-1.3.15/bin/tdbdump -h` got 0 exit code
- ran `/nix/store/3dmmnilw4rsyrnz164vy04advblps0h5-tdb-1.3.15/bin/tdbbackup -h` got 0 exit code
- ran `/nix/store/3dmmnilw4rsyrnz164vy04advblps0h5-tdb-1.3.15/bin/tdbbackup --help` got 0 exit code
- ran `/nix/store/3dmmnilw4rsyrnz164vy04advblps0h5-tdb-1.3.15/bin/tdbbackup --help` and found version 1.3.15
- found 1.3.15 with grep in /nix/store/3dmmnilw4rsyrnz164vy04advblps0h5-tdb-1.3.15
- found 1.3.15 in filename of file in /nix/store/3dmmnilw4rsyrnz164vy04advblps0h5-tdb-1.3.15
cc "@wkennington"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/s8bdx22ycxz8j072244q8sng0jxh3sjc-thepeg-2.1.2/bin/setupThePEG help` got 0 exit code
- ran `/nix/store/s8bdx22ycxz8j072244q8sng0jxh3sjc-thepeg-2.1.2/bin/setupThePEG -v` and found version 2.1.2
- ran `/nix/store/s8bdx22ycxz8j072244q8sng0jxh3sjc-thepeg-2.1.2/bin/setupThePEG --version` and found version 2.1.2
- ran `/nix/store/s8bdx22ycxz8j072244q8sng0jxh3sjc-thepeg-2.1.2/bin/runThePEG -v` and found version 2.1.2
- ran `/nix/store/s8bdx22ycxz8j072244q8sng0jxh3sjc-thepeg-2.1.2/bin/runThePEG --version` and found version 2.1.2
- found 2.1.2 with grep in /nix/store/s8bdx22ycxz8j072244q8sng0jxh3sjc-thepeg-2.1.2
cc "@veprbl"
Semi-automatic update. These checks were performed:
- built on NixOS
- found 1.2.4 with grep in /nix/store/dqq7n2sk0fdzn7dnz88yhgms5dq6s39x-uid_wrapper-1.2.4
- found 1.2.4 in filename of file in /nix/store/dqq7n2sk0fdzn7dnz88yhgms5dq6s39x-uid_wrapper-1.2.4
cc "@wkennington"
Semi-automatic update. These checks were performed:
- built on NixOS
- found 2.0.2 with grep in /nix/store/32zly5yhz0hcqgk6w5y0ish2rssfc6y9-vagrant-2.0.2
cc "@aneeshusa"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/c0vdpjgxib99lnhsvvn440jbppnmiqi0-vim-vint-0.3.18/bin/.vint-wrapped -h` got 0 exit code
- ran `/nix/store/c0vdpjgxib99lnhsvvn440jbppnmiqi0-vim-vint-0.3.18/bin/.vint-wrapped --help` got 0 exit code
- ran `/nix/store/c0vdpjgxib99lnhsvvn440jbppnmiqi0-vim-vint-0.3.18/bin/.vint-wrapped -v` and found version 0.3.18
- ran `/nix/store/c0vdpjgxib99lnhsvvn440jbppnmiqi0-vim-vint-0.3.18/bin/.vint-wrapped --version` and found version 0.3.18
- ran `/nix/store/c0vdpjgxib99lnhsvvn440jbppnmiqi0-vim-vint-0.3.18/bin/vint -h` got 0 exit code
- ran `/nix/store/c0vdpjgxib99lnhsvvn440jbppnmiqi0-vim-vint-0.3.18/bin/vint --help` got 0 exit code
- ran `/nix/store/c0vdpjgxib99lnhsvvn440jbppnmiqi0-vim-vint-0.3.18/bin/vint -v` and found version 0.3.18
- ran `/nix/store/c0vdpjgxib99lnhsvvn440jbppnmiqi0-vim-vint-0.3.18/bin/vint --version` and found version 0.3.18
- found 0.3.18 with grep in /nix/store/c0vdpjgxib99lnhsvvn440jbppnmiqi0-vim-vint-0.3.18
- found 0.3.18 in filename of file in /nix/store/c0vdpjgxib99lnhsvvn440jbppnmiqi0-vim-vint-0.3.18
cc "@andsild"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/h94k1a3vvna29as5663ch6vffml5p07w-omniorb-4.2.2/bin/omniidl -h` got 0 exit code
- ran `/nix/store/h94k1a3vvna29as5663ch6vffml5p07w-omniorb-4.2.2/bin/omkdepend -h` got 0 exit code
- ran `/nix/store/h94k1a3vvna29as5663ch6vffml5p07w-omniorb-4.2.2/bin/omkdepend --help` got 0 exit code
- ran `/nix/store/h94k1a3vvna29as5663ch6vffml5p07w-omniorb-4.2.2/bin/omniNames --help` got 0 exit code
- found 4.2.2 with grep in /nix/store/h94k1a3vvna29as5663ch6vffml5p07w-omniorb-4.2.2
- found 4.2.2 in filename of file in /nix/store/h94k1a3vvna29as5663ch6vffml5p07w-omniorb-4.2.2
cc "@smironov"
Semi-automatic update. These checks were performed:
- built on NixOS
- found 1.4.2 with grep in /nix/store/g48a1pwdycdlx5q4ayxgdyhw1jqp6mn7-opencsg-1.4.2
- found 1.4.2 in filename of file in /nix/store/g48a1pwdycdlx5q4ayxgdyhw1jqp6mn7-opencsg-1.4.2
cc "@raskin"
Semi-automatic update. These checks were performed:
- built on NixOS
- found 3.13.0 in filename of file in /nix/store/pcakgwgq8k7ad2x10ji9z054z87z1pca-wolfssl-3.13.0
cc "@mcmtroffaes"
Semi-automatic update. These checks were performed:
- built on NixOS
- found 2.7.4 with grep in /nix/store/3881hzp2frwjsw7xyafvr3zzlyacv7a8-zimg-2.7.4
- found 2.7.4 in filename of file in /nix/store/3881hzp2frwjsw7xyafvr3zzlyacv7a8-zimg-2.7.4
cc "@rnhmjoj"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/g9jg6pc3vwnpfgbypnzv2v5gp4r7gnnn-usb-modeswitch-2.5.2/bin/usb_modeswitch -h` got 0 exit code
- ran `/nix/store/g9jg6pc3vwnpfgbypnzv2v5gp4r7gnnn-usb-modeswitch-2.5.2/bin/usb_modeswitch --help` got 0 exit code
- ran `/nix/store/g9jg6pc3vwnpfgbypnzv2v5gp4r7gnnn-usb-modeswitch-2.5.2/bin/usb_modeswitch --version` and found version 2.5.2
- ran `/nix/store/g9jg6pc3vwnpfgbypnzv2v5gp4r7gnnn-usb-modeswitch-2.5.2/bin/usb_modeswitch -h` and found version 2.5.2
- ran `/nix/store/g9jg6pc3vwnpfgbypnzv2v5gp4r7gnnn-usb-modeswitch-2.5.2/bin/usb_modeswitch --help` and found version 2.5.2
- found 2.5.2 with grep in /nix/store/g9jg6pc3vwnpfgbypnzv2v5gp4r7gnnn-usb-modeswitch-2.5.2
- found 2.5.2 in filename of file in /nix/store/g9jg6pc3vwnpfgbypnzv2v5gp4r7gnnn-usb-modeswitch-2.5.2
cc "@marcweber @peterhoeg"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/bg2nls3ahz6jd32nxdaax1akz2hjh8ma-uncrustify-0.66.1/bin/uncrustify -h` got 0 exit code
- ran `/nix/store/bg2nls3ahz6jd32nxdaax1akz2hjh8ma-uncrustify-0.66.1/bin/uncrustify --help` got 0 exit code
- ran `/nix/store/bg2nls3ahz6jd32nxdaax1akz2hjh8ma-uncrustify-0.66.1/bin/uncrustify -v` and found version 0.66.1
- ran `/nix/store/bg2nls3ahz6jd32nxdaax1akz2hjh8ma-uncrustify-0.66.1/bin/uncrustify --version` and found version 0.66.1
- found 0.66.1 with grep in /nix/store/bg2nls3ahz6jd32nxdaax1akz2hjh8ma-uncrustify-0.66.1
- found 0.66.1 in filename of file in /nix/store/bg2nls3ahz6jd32nxdaax1akz2hjh8ma-uncrustify-0.66.1
cc "@bjornfor"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/3vw7qlk7mlknydvnfps6wsp1wqrmcv08-thrift-0.11.0/bin/thrift --version` and found version 0.11.0
- found 0.11.0 with grep in /nix/store/3vw7qlk7mlknydvnfps6wsp1wqrmcv08-thrift-0.11.0
- found 0.11.0 in filename of file in /nix/store/3vw7qlk7mlknydvnfps6wsp1wqrmcv08-thrift-0.11.0
cc "@bjornfor"
Semi-automatic update. These checks were performed:
- built on NixOS
- found 3.4.2 with grep in /nix/store/ad99ha1vvigs8zaw6mb4cwjb0an9gdlp-sqlcipher-3.4.2
- found 3.4.2 in filename of file in /nix/store/ad99ha1vvigs8zaw6mb4cwjb0an9gdlp-sqlcipher-3.4.2
Semi-automatic update. These checks were performed:
- built on NixOS
- found 1.1.9 with grep in /nix/store/chjpd02w9vp33l325v4j11cc1g9wabk0-socket_wrapper-1.1.9
- found 1.1.9 in filename of file in /nix/store/chjpd02w9vp33l325v4j11cc1g9wabk0-socket_wrapper-1.1.9
cc "@wkennington"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1/bin/dbfcreate -h` got 0 exit code
- ran `/nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1/bin/dbfcreate --help` got 0 exit code
- ran `/nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1/bin/dbfcreate help` got 0 exit code
- ran `/nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1/bin/dbfinfo -h` got 0 exit code
- ran `/nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1/bin/dbfinfo --help` got 0 exit code
- ran `/nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1/bin/dbfinfo help` got 0 exit code
- found 1.4.1 with grep in /nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1
- found 1.4.1 in filename of file in /nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1
cc "@ehmry"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8/bin/sassc -h` got 0 exit code
- ran `/nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8/bin/sassc --help` got 0 exit code
- ran `/nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8/bin/sassc -v` and found version 3.4.8
- ran `/nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8/bin/sassc --version` and found version 3.4.8
- ran `/nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8/bin/sassc -h` and found version 3.4.8
- ran `/nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8/bin/sassc --help` and found version 3.4.8
- found 3.4.8 with grep in /nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8
- found 3.4.8 in filename of file in /nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8
cc "@codyopel @pjones"
Semi-automatic update. These checks were performed:
- built on NixOS
- found 0.11.3 with grep in /nix/store/z53qgvkdj04v2wspk7ril70qy1ckwh8k-rdkafka-0.11.3
- found 0.11.3 in filename of file in /nix/store/z53qgvkdj04v2wspk7ril70qy1ckwh8k-rdkafka-0.11.3
cc "@boothead @wkennington"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/i0mvrxm8vlgilmmkqrlp33g122iw5zlm-poco-1.8.1/bin/cpspc -h` got 0 exit code
- ran `/nix/store/i0mvrxm8vlgilmmkqrlp33g122iw5zlm-poco-1.8.1/bin/cpspc --help` got 0 exit code
- ran `/nix/store/i0mvrxm8vlgilmmkqrlp33g122iw5zlm-poco-1.8.1/bin/cpspc help` got 0 exit code
- ran `/nix/store/i0mvrxm8vlgilmmkqrlp33g122iw5zlm-poco-1.8.1/bin/f2cpsp -h` got 0 exit code
- ran `/nix/store/i0mvrxm8vlgilmmkqrlp33g122iw5zlm-poco-1.8.1/bin/f2cpsp --help` got 0 exit code
- ran `/nix/store/i0mvrxm8vlgilmmkqrlp33g122iw5zlm-poco-1.8.1/bin/f2cpsp help` got 0 exit code
- found 1.8.1 with grep in /nix/store/i0mvrxm8vlgilmmkqrlp33g122iw5zlm-poco-1.8.1
cc "@orivej"
This is the first stable version of gerbil, named 0.12-RELEASE
so that builtins.compareVersions should consider it newer than the
packages of the 0.12-DEV-xxx series.
Next stable package version will be gerbil-0.13 without -RELEASE.
Next unstable package version will be in its own distinct package
gerbil-unstable-2018-02-28 or some such, as per nixpkgs guidelines.
Semi-automatic update. These checks were performed:
- built on NixOS
- found 0.5.3 in filename of file in /nix/store/yqsgs9hw8c3rdia75rswgk98lz3c52ih-openspecfun-0.5.3
cc "@ttuegel"
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/204499k26yrbhl1mq7spslsc5fvmb81b-opendht-1.5.0/bin/dhtnode -h` got 0 exit code
- ran `/nix/store/204499k26yrbhl1mq7spslsc5fvmb81b-opendht-1.5.0/bin/dhtnode --help` got 0 exit code
- ran `/nix/store/204499k26yrbhl1mq7spslsc5fvmb81b-opendht-1.5.0/bin/dhtchat -h` got 0 exit code
- ran `/nix/store/204499k26yrbhl1mq7spslsc5fvmb81b-opendht-1.5.0/bin/dhtchat --help` got 0 exit code
- ran `/nix/store/204499k26yrbhl1mq7spslsc5fvmb81b-opendht-1.5.0/bin/dhtscanner -h` got 0 exit code
- ran `/nix/store/204499k26yrbhl1mq7spslsc5fvmb81b-opendht-1.5.0/bin/dhtscanner --help` got 0 exit code
- ran `/nix/store/204499k26yrbhl1mq7spslsc5fvmb81b-opendht-1.5.0/bin/dhtscanner help` got 0 exit code
- ran `/nix/store/204499k26yrbhl1mq7spslsc5fvmb81b-opendht-1.5.0/bin/dhtscanner -V` and found version 1.5.0
- ran `/nix/store/204499k26yrbhl1mq7spslsc5fvmb81b-opendht-1.5.0/bin/dhtscanner --version` and found version 1.5.0
- found 1.5.0 with grep in /nix/store/204499k26yrbhl1mq7spslsc5fvmb81b-opendht-1.5.0
- found 1.5.0 in filename of file in /nix/store/204499k26yrbhl1mq7spslsc5fvmb81b-opendht-1.5.0
cc "@taeer @olynch"
Semi-automatic update. These checks were performed:
- built on NixOS
- found 3.1.1 with grep in /nix/store/4pydihqzddnsfmlc2zcn6qlwi7m2p1k1-nlohmann_json-3.1.1
- found 3.1.1 in filename of file in /nix/store/4pydihqzddnsfmlc2zcn6qlwi7m2p1k1-nlohmann_json-3.1.1
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/yzb91gfv6pvyvc662n9sc9rzf2mki8ss-nanomsg-1.1.2/bin/nanocat -h` got 0 exit code
- ran `/nix/store/yzb91gfv6pvyvc662n9sc9rzf2mki8ss-nanomsg-1.1.2/bin/nanocat --help` got 0 exit code
- ran `/nix/store/yzb91gfv6pvyvc662n9sc9rzf2mki8ss-nanomsg-1.1.2/bin/nanocat -h` and found version 1.1.2
- ran `/nix/store/yzb91gfv6pvyvc662n9sc9rzf2mki8ss-nanomsg-1.1.2/bin/nanocat --help` and found version 1.1.2
- found 1.1.2 with grep in /nix/store/yzb91gfv6pvyvc662n9sc9rzf2mki8ss-nanomsg-1.1.2
- found 1.1.2 in filename of file in /nix/store/yzb91gfv6pvyvc662n9sc9rzf2mki8ss-nanomsg-1.1.2
Semi-automatic update. These checks were performed:
- built on NixOS
- found 1.2.3 with grep in /nix/store/gglvdgfxscxg7hhdgbxyzdvd01kv4nxa-nanoflann-1.2.3
- found 1.2.3 in filename of file in /nix/store/gglvdgfxscxg7hhdgbxyzdvd01kv4nxa-nanoflann-1.2.3
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msiinfo -h` got 0 exit code
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msiinfo --help` got 0 exit code
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msiinfo help` got 0 exit code
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msiinfo -v` and found version 0.97
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msiinfo --version` and found version 0.97
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msiextract -h` got 0 exit code
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msiextract --help` got 0 exit code
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msiextract help` got 0 exit code
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msiextract --version` and found version 0.97
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/wixl -h` got 0 exit code
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/wixl --help` got 0 exit code
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/wixl --version` and found version 0.97
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/wixl-heat -h` got 0 exit code
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/wixl-heat --help` got 0 exit code
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msidump -h` got 0 exit code
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msidump --help` got 0 exit code
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msidump -v` and found version 0.97
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msidump --version` and found version 0.97
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msidiff -h` got 0 exit code
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msidiff --help` got 0 exit code
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msidiff -v` and found version 0.97
- ran `/nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97/bin/msidiff --version` and found version 0.97
- found 0.97 with grep in /nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97
- found 0.97 in filename of file in /nix/store/xmsjbixyip29vcxgh0wkhlvvb9zpbhz2-msitools-0.97
cc "@vcunat"
Semi-automatic update. These checks were performed:
- built on NixOS
- found 2.1.2 with grep in /nix/store/382shdj4qs6hl916ycw7ai4c7xz1sd40-msilbc-2.1.2
- found 2.1.2 in filename of file in /nix/store/382shdj4qs6hl916ycw7ai4c7xz1sd40-msilbc-2.1.2
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/hndrgmyp176jgfgy4iyf0wdf21hhbdwv-mkdocs-0.17.2/bin/.mkdocs-wrapped -h` got 0 exit code
- ran `/nix/store/hndrgmyp176jgfgy4iyf0wdf21hhbdwv-mkdocs-0.17.2/bin/.mkdocs-wrapped --help` got 0 exit code
- ran `/nix/store/hndrgmyp176jgfgy4iyf0wdf21hhbdwv-mkdocs-0.17.2/bin/.mkdocs-wrapped -V` and found version 0.17.2
- ran `/nix/store/hndrgmyp176jgfgy4iyf0wdf21hhbdwv-mkdocs-0.17.2/bin/.mkdocs-wrapped --version` and found version 0.17.2
- ran `/nix/store/hndrgmyp176jgfgy4iyf0wdf21hhbdwv-mkdocs-0.17.2/bin/mkdocs -h` got 0 exit code
- ran `/nix/store/hndrgmyp176jgfgy4iyf0wdf21hhbdwv-mkdocs-0.17.2/bin/mkdocs --help` got 0 exit code
- ran `/nix/store/hndrgmyp176jgfgy4iyf0wdf21hhbdwv-mkdocs-0.17.2/bin/mkdocs -V` and found version 0.17.2
- ran `/nix/store/hndrgmyp176jgfgy4iyf0wdf21hhbdwv-mkdocs-0.17.2/bin/mkdocs --version` and found version 0.17.2
- found 0.17.2 with grep in /nix/store/hndrgmyp176jgfgy4iyf0wdf21hhbdwv-mkdocs-0.17.2
- found 0.17.2 in filename of file in /nix/store/hndrgmyp176jgfgy4iyf0wdf21hhbdwv-mkdocs-0.17.2
Semi-automatic update. These checks were performed:
- built on NixOS
- ran `/nix/store/bjxi9sdz068kd74wjal05kmndgq51qdh-minizinc-2.1.7/bin/mzn-fzn -h` got 0 exit code
- ran `/nix/store/bjxi9sdz068kd74wjal05kmndgq51qdh-minizinc-2.1.7/bin/mzn-fzn --help` got 0 exit code
- ran `/nix/store/bjxi9sdz068kd74wjal05kmndgq51qdh-minizinc-2.1.7/bin/mzn-fzn --version` and found version 2.1.7
- ran `/nix/store/bjxi9sdz068kd74wjal05kmndgq51qdh-minizinc-2.1.7/bin/mzn2fzn -h` got 0 exit code
- ran `/nix/store/bjxi9sdz068kd74wjal05kmndgq51qdh-minizinc-2.1.7/bin/mzn2fzn --help` got 0 exit code
- ran `/nix/store/bjxi9sdz068kd74wjal05kmndgq51qdh-minizinc-2.1.7/bin/mzn2fzn --version` and found version 2.1.7
- ran `/nix/store/bjxi9sdz068kd74wjal05kmndgq51qdh-minizinc-2.1.7/bin/mzn2fzn_test --version` and found version 2.1.7
- ran `/nix/store/bjxi9sdz068kd74wjal05kmndgq51qdh-minizinc-2.1.7/bin/solns2out -h` got 0 exit code
- ran `/nix/store/bjxi9sdz068kd74wjal05kmndgq51qdh-minizinc-2.1.7/bin/solns2out --help` got 0 exit code
- ran `/nix/store/bjxi9sdz068kd74wjal05kmndgq51qdh-minizinc-2.1.7/bin/solns2out --version` and found version 2.1.7
- ran `/nix/store/bjxi9sdz068kd74wjal05kmndgq51qdh-minizinc-2.1.7/bin/mzn2doc --version` and found version 2.1.7
- found 2.1.7 with grep in /nix/store/bjxi9sdz068kd74wjal05kmndgq51qdh-minizinc-2.1.7
- found 2.1.7 in filename of file in /nix/store/bjxi9sdz068kd74wjal05kmndgq51qdh-minizinc-2.1.7
cc "@sheenobu"
Semi-automatic update. These checks were performed:
- built on NixOS
- found 1.1.0 with grep in /nix/store/4ffpnfrp66c8caishcddzppbddr8kx35-menu-cache-1.1.0
- found 1.1.0 in filename of file in /nix/store/4ffpnfrp66c8caishcddzppbddr8kx35-menu-cache-1.1.0
cc "@ttuegel"
These (outdated) derivations are only used by nixos/lib/testing.nix.
If we want to provide jquery & jquery-ui packages this is better done
in nodePackages.