We started having issues with `pkgs.dockerTools.pullImage`, were it
would fail with:
```
FATA[0000] Error loading trust policy: open /etc/containers/policy.json: no such file or directory
```
It turns out that since `skopeo` was bumped to `0.1.40`, it was
accidentally no longer being built with a default policy.
This may happen again, see https://github.com/containers/skopeo/issues/787
This makes the command ‘nix-env -qa -f. --arg config '{skipAliases =
true;}'’ work in Nixpkgs.
Misc...
- qtikz: use libsForQt5.callPackage
This ensures we get the right poppler.
- rewrites:
docbook5_xsl -> docbook_xsl_ns
docbook_xml_xslt -> docbook_xsl
diffpdf: fixup
Skopeo used by our docker tools was patched to work in the build
sandbox (it used /var/tmp which is not available in the sandbox).
Since this temporary directory can now be set at build time, we remove
the patch from our docker tools.
* pkgs: refactor needless quoting of homepage meta attribute
A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.
* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit
* Fixed some instances
the dependency docker_client.go tries to read /etc/docker/certs.d/
and fails if this is not readable.
the original code silently ignores this directory if it is not present
so path.patch adds the logic to ignore it in case of a permission error.