Upstream changes to the build system required adjusting many packages'
dependencies. On the Nixpkgs side, we no longer propagate the dependency
on cmake (to reduce closure size), so downstream dependencies had to be
adjusted for most packages that depend on kdelibs.
Oracle changed the path of the files.
Previous versions looked like:
$ jar tf UnlimitedJCEPolicyJDK7.zip
UnlimitedJCEPolicy/
UnlimitedJCEPolicy/US_export_policy.jar
UnlimitedJCEPolicy/local_policy.jar
UnlimitedJCEPolicy/README.txt
The new version looks like:
$ jar tf jce_policy-8.zip
UnlimitedJCEPolicyJDK8/
UnlimitedJCEPolicyJDK8/local_policy.jar
UnlimitedJCEPolicyJDK8/README.txt
UnlimitedJCEPolicyJDK8/US_export_policy.jar
A better solution is probably just to trim the directory off completely.
This fixes#10077 because after some debugging it turns out that by
default we don't have a font which is able to display Chinese symbols.
Thanks to @anderspapitto, @kmicu and hyper_ch on IRC to help debugging
this issue, see log at:
http://nixos.org/irc/logs/log.20150926 starting at 19:46
With unifont we have a reasonable fallback font to ensure that every
written language is rendered correctly and thus less surprise for new
users who keep their font settings at the default.
Reported-by: Anders Papitto <anderspapitto@gmail.com>
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
It's a replacement for the figlet utility based on libcaca and has a few
more features, such as:
* The ability to load FIGlet fonts
* Support for Unicode input and output
* Support for colour fonts
* Support for colour output
* Support for various output formats: HTML, IRC, ANSI...
I've stolen the description from the Debian package:
https://packages.debian.org/sid/toilet
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
In order to load compressed figlet/toilet fonts, libcaca needs to have
support for zlib.
The motivation behind this is because I'm going to package toilet, which
comes with compressed fonts by default.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>