2015-09-01 14:52:08 +02:00
|
|
|
<section xmlns="http://docbook.org/ns/docbook"
|
|
|
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
|
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
|
|
|
version="5.0"
|
|
|
|
xml:id="sec-release-unstable">
|
|
|
|
|
|
|
|
<title>Unstable</title>
|
|
|
|
|
2015-11-18 01:26:00 +01:00
|
|
|
<para>In addition to numerous new and upgraded packages, this release
|
|
|
|
has the following highlights:</para>
|
|
|
|
|
|
|
|
<itemizedlist>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>You can now pin a specific version of NixOS in your <filename>configuration.nix</filename>
|
|
|
|
by setting:
|
|
|
|
|
|
|
|
<programlisting>
|
|
|
|
nixos.path = ./nixpkgs-unstable-2015-12-06/nixos;
|
|
|
|
</programlisting>
|
|
|
|
|
|
|
|
This will make NixOS re-evaluate your configuration with the modules of
|
|
|
|
the specified NixOS version at the given path. For more details, see
|
|
|
|
<xref linkend="module-misc-nixos" /></para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
</itemizedlist>
|
|
|
|
|
2015-11-26 22:43:11 +01:00
|
|
|
<para>The following new services were added since the last release:
|
|
|
|
|
|
|
|
<itemizedlist>
|
|
|
|
<listitem><para><literal>services/monitoring/longview.nix</literal></para></listitem>
|
|
|
|
</itemizedlist>
|
|
|
|
</para>
|
|
|
|
|
2015-09-01 14:52:08 +02:00
|
|
|
<para>When upgrading from a previous release, please be aware of the
|
2015-09-21 11:02:17 +02:00
|
|
|
following incompatible changes:</para>
|
|
|
|
|
|
|
|
<itemizedlist>
|
|
|
|
<listitem>
|
|
|
|
<para><command>wmiiSnap</command> has been replaced with
|
|
|
|
<command>wmii_hg</command>, but
|
|
|
|
<command>services.xserver.windowManager.wmii.enable</command> has
|
|
|
|
been updated respectively so this only affects you if you have
|
|
|
|
explicitly installed <command>wmiiSnap</command>.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para><command>wmiimenu</command> is removed, as it has been
|
|
|
|
removed by the developers upstream. Use <command>wimenu</command>
|
|
|
|
from the <command>wmii-hg</command> package.</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>Gitit is no longer automatically added to the module list in
|
|
|
|
NixOS and as such there will not be any manual entries for it. You
|
|
|
|
will need to add an import statement to your NixOS configuration
|
|
|
|
in order to use it, e.g.
|
|
|
|
|
|
|
|
<programlisting><![CDATA[
|
|
|
|
{
|
|
|
|
imports = [ <nixos/modules/services/misc/gitit.nix> ];
|
|
|
|
}
|
|
|
|
]]></programlisting>
|
|
|
|
|
|
|
|
will include the Gitit service configuration options.</para>
|
|
|
|
</listitem>
|
|
|
|
|
2015-11-01 23:14:40 +01:00
|
|
|
<listitem>
|
|
|
|
<para><command>nginx</command> does not accept flags for enabling and
|
|
|
|
disabling modules anymore. Instead it accepts <literal>modules</literal>
|
|
|
|
argument, which is a list of modules to be built in. All modules now
|
|
|
|
reside in <literal>nginxModules</literal> set. Example configuration:
|
|
|
|
|
|
|
|
<programlisting><![CDATA[
|
|
|
|
nginx.override {
|
|
|
|
modules = [ nginxModules.rtmp nginxModules.dav nginxModules.moreheaders ];
|
|
|
|
}
|
|
|
|
]]></programlisting>
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
|
2015-11-21 21:55:10 +01:00
|
|
|
<listitem>
|
|
|
|
<para><command>s3sync</command> is removed, as it hasn't been
|
|
|
|
developed by upstream for 4 years and only runs with ruby 1.8.
|
|
|
|
For an actively-developer alternative look at
|
|
|
|
<command>tarsnap</command> and others.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
|
2015-11-16 18:10:20 +01:00
|
|
|
<listitem>
|
|
|
|
<para><command>ruby_1_8</command> has been removed as it's not
|
|
|
|
supported from upstream anymore and probably contains security
|
|
|
|
issues.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
|
2015-11-29 13:50:55 +01:00
|
|
|
<listitem>
|
|
|
|
<para><literal>tidy-html5</literal> package is removed.
|
|
|
|
Upstream only provided <literal>(lib)tidy5</literal> during development,
|
|
|
|
and now they went back to <literal>(lib)tidy</literal> to work as a drop-in
|
|
|
|
replacement of the original package that has been unmaintained for years.
|
|
|
|
You can (still) use the <literal>html-tidy</literal> package, which got updated
|
|
|
|
to a stable release from this new upstream.</para>
|
|
|
|
</listitem>
|
2015-09-21 11:02:17 +02:00
|
|
|
</itemizedlist>
|
|
|
|
|
2015-09-01 14:52:08 +02:00
|
|
|
</section>
|