Merge commit '39df5831cae0dce4628e80cf7f6f5520a9dae18e' into HEAD
This commit is contained in:
+6
-1
@@ -1,12 +1,17 @@
|
|||||||
MD_TARGETS=$(addsuffix .xml, $(basename $(wildcard ./*.md ./**/*.md)))
|
MD_TARGETS=$(addsuffix .xml, $(basename $(wildcard ./*.md ./**/*.md)))
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
all: validate out/html/index.html out/epub/manual.epub
|
all: validate format out/html/index.html out/epub/manual.epub
|
||||||
|
|
||||||
.PHONY: debug
|
.PHONY: debug
|
||||||
debug:
|
debug:
|
||||||
nix-shell --run "xmloscopy --docbook5 ./manual.xml ./manual-full.xml"
|
nix-shell --run "xmloscopy --docbook5 ./manual.xml ./manual-full.xml"
|
||||||
|
|
||||||
|
.PHONY: format
|
||||||
|
format:
|
||||||
|
find . -iname '*.xml' -type f -print0 | xargs -0 -I{} -n1 \
|
||||||
|
xmlformat --config-file "$$XMLFORMAT_CONFIG" -i {}
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -f ${MD_TARGETS} .version manual-full.xml
|
rm -f ${MD_TARGETS} .version manual-full.xml
|
||||||
|
|||||||
+439
-299
File diff suppressed because it is too large
Load Diff
+208
-201
@@ -1,42 +1,51 @@
|
|||||||
<chapter xmlns="http://docbook.org/ns/docbook"
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="chap-packageconfig">
|
xml:id="chap-packageconfig">
|
||||||
|
<title>Global configuration</title>
|
||||||
<title>Global configuration</title>
|
<para>
|
||||||
|
Nix comes with certain defaults about what packages can and cannot be
|
||||||
<para>Nix comes with certain defaults about what packages can and
|
installed, based on a package's metadata. By default, Nix will prevent
|
||||||
cannot be installed, based on a package's metadata. By default, Nix
|
installation if any of the following criteria are true:
|
||||||
will prevent installation if any of the following criteria are
|
</para>
|
||||||
true:</para>
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
<itemizedlist>
|
<para>
|
||||||
<listitem><para>The package is thought to be broken, and has had
|
The package is thought to be broken, and has had its
|
||||||
its <literal>meta.broken</literal> set to
|
<literal>meta.broken</literal> set to <literal>true</literal>.
|
||||||
<literal>true</literal>.</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem><para>The package isn't intended to run on the given system, as none of its <literal>meta.platforms</literal> match the given system.</para></listitem>
|
<listitem>
|
||||||
|
<para>
|
||||||
<listitem><para>The package's <literal>meta.license</literal> is set
|
The package isn't intended to run on the given system, as none of its
|
||||||
to a license which is considered to be unfree.</para></listitem>
|
<literal>meta.platforms</literal> match the given system.
|
||||||
|
</para>
|
||||||
<listitem><para>The package has known security vulnerabilities but
|
</listitem>
|
||||||
has not or can not be updated for some reason, and a list of issues
|
<listitem>
|
||||||
has been entered in to the package's
|
<para>
|
||||||
<literal>meta.knownVulnerabilities</literal>.</para></listitem>
|
The package's <literal>meta.license</literal> is set to a license which is
|
||||||
</itemizedlist>
|
considered to be unfree.
|
||||||
|
</para>
|
||||||
<para>Note that all this is checked during evaluation already,
|
</listitem>
|
||||||
and the check includes any package that is evaluated.
|
<listitem>
|
||||||
In particular, all build-time dependencies are checked.
|
<para>
|
||||||
<literal>nix-env -qa</literal> will (attempt to) hide any packages
|
The package has known security vulnerabilities but has not or can not be
|
||||||
that would be refused.
|
updated for some reason, and a list of issues has been entered in to the
|
||||||
</para>
|
package's <literal>meta.knownVulnerabilities</literal>.
|
||||||
|
</para>
|
||||||
<para>Each of these criteria can be altered in the nixpkgs
|
</listitem>
|
||||||
configuration.</para>
|
</itemizedlist>
|
||||||
|
<para>
|
||||||
<para>The nixpkgs configuration for a NixOS system is set in the
|
Note that all this is checked during evaluation already, and the check
|
||||||
<literal>configuration.nix</literal>, as in the following example:
|
includes any package that is evaluated. In particular, all build-time
|
||||||
|
dependencies are checked. <literal>nix-env -qa</literal> will (attempt to)
|
||||||
|
hide any packages that would be refused.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
Each of these criteria can be altered in the nixpkgs configuration.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
The nixpkgs configuration for a NixOS system is set in the
|
||||||
|
<literal>configuration.nix</literal>, as in the following example:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
nixpkgs.config = {
|
nixpkgs.config = {
|
||||||
@@ -44,71 +53,75 @@ configuration.</para>
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
However, this does not allow unfree software for individual users.
|
However, this does not allow unfree software for individual users. Their
|
||||||
Their configurations are managed separately.</para>
|
configurations are managed separately.
|
||||||
|
</para>
|
||||||
<para>A user's of nixpkgs configuration is stored in a user-specific
|
<para>
|
||||||
configuration file located at
|
A user's of nixpkgs configuration is stored in a user-specific configuration
|
||||||
<filename>~/.config/nixpkgs/config.nix</filename>. For example:
|
file located at <filename>~/.config/nixpkgs/config.nix</filename>. For
|
||||||
|
example:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>Note that we are not able to test or build unfree software on Hydra
|
Note that we are not able to test or build unfree software on Hydra due to
|
||||||
due to policy. Most unfree licenses prohibit us from either executing or
|
policy. Most unfree licenses prohibit us from either executing or
|
||||||
distributing the software.</para>
|
distributing the software.
|
||||||
|
</para>
|
||||||
<section xml:id="sec-allow-broken">
|
<section xml:id="sec-allow-broken">
|
||||||
<title>Installing broken packages</title>
|
<title>Installing broken packages</title>
|
||||||
|
|
||||||
|
<para>
|
||||||
<para>There are two ways to try compiling a package which has been
|
There are two ways to try compiling a package which has been marked as
|
||||||
marked as broken.</para>
|
broken.
|
||||||
|
</para>
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>
|
<listitem>
|
||||||
|
<para>
|
||||||
For allowing the build of a broken package once, you can use an
|
For allowing the build of a broken package once, you can use an
|
||||||
environment variable for a single invocation of the nix tools:
|
environment variable for a single invocation of the nix tools:
|
||||||
|
<programlisting>$ export NIXPKGS_ALLOW_BROKEN=1</programlisting>
|
||||||
<programlisting>$ export NIXPKGS_ALLOW_BROKEN=1</programlisting>
|
</para>
|
||||||
</para></listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
<listitem><para>
|
<para>
|
||||||
For permanently allowing broken packages to be built, you may
|
For permanently allowing broken packages to be built, you may add
|
||||||
add <literal>allowBroken = true;</literal> to your user's
|
<literal>allowBroken = true;</literal> to your user's configuration file,
|
||||||
configuration file, like this:
|
like this:
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
allowBroken = true;
|
allowBroken = true;
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
|
<section xml:id="sec-allow-unsupported-system">
|
||||||
<section xml:id="sec-allow-unsupported-system">
|
|
||||||
<title>Installing packages on unsupported systems</title>
|
<title>Installing packages on unsupported systems</title>
|
||||||
|
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
There are also two ways to try compiling a package which has been marked as unsuported for the given system.
|
There are also two ways to try compiling a package which has been marked as
|
||||||
|
unsuported for the given system.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>
|
|
||||||
For allowing the build of a broken package once, you can use an environment variable for a single invocation of the nix tools:
|
|
||||||
|
|
||||||
<programlisting>$ export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1</programlisting>
|
|
||||||
</para></listitem>
|
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
For permanently allowing broken packages to be built, you may add <literal>allowUnsupportedSystem = true;</literal> to your user's configuration file, like this:
|
For allowing the build of a broken package once, you can use an
|
||||||
|
environment variable for a single invocation of the nix tools:
|
||||||
|
<programlisting>$ export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1</programlisting>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
For permanently allowing broken packages to be built, you may add
|
||||||
|
<literal>allowUnsupportedSystem = true;</literal> to your user's
|
||||||
|
configuration file, like this:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
allowUnsupportedSystem = true;
|
allowUnsupportedSystem = true;
|
||||||
@@ -119,73 +132,77 @@ distributing the software.</para>
|
|||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The difference between an a package being unsupported on some system and being broken is admittedly a bit fuzzy.
|
The difference between an a package being unsupported on some system and
|
||||||
If a program <emphasis>ought</emphasis> to work on a certain platform, but doesn't, the platform should be included in <literal>meta.platforms</literal>, but marked as broken with e.g. <literal>meta.broken = !hostPlatform.isWindows</literal>.
|
being broken is admittedly a bit fuzzy. If a program
|
||||||
Of course, this begs the question of what "ought" means exactly.
|
<emphasis>ought</emphasis> to work on a certain platform, but doesn't, the
|
||||||
That is left to the package maintainer.
|
platform should be included in <literal>meta.platforms</literal>, but marked
|
||||||
|
as broken with e.g. <literal>meta.broken =
|
||||||
|
!hostPlatform.isWindows</literal>. Of course, this begs the question of what
|
||||||
|
"ought" means exactly. That is left to the package maintainer.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
<section xml:id="sec-allow-unfree">
|
||||||
<section xml:id="sec-allow-unfree">
|
|
||||||
<title>Installing unfree packages</title>
|
<title>Installing unfree packages</title>
|
||||||
|
|
||||||
<para>There are several ways to tweak how Nix handles a package
|
<para>
|
||||||
which has been marked as unfree.</para>
|
There are several ways to tweak how Nix handles a package which has been
|
||||||
|
marked as unfree.
|
||||||
|
</para>
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>
|
<listitem>
|
||||||
To temporarily allow all unfree packages, you can use an
|
<para>
|
||||||
environment variable for a single invocation of the nix tools:
|
To temporarily allow all unfree packages, you can use an environment
|
||||||
|
variable for a single invocation of the nix tools:
|
||||||
<programlisting>$ export NIXPKGS_ALLOW_UNFREE=1</programlisting>
|
<programlisting>$ export NIXPKGS_ALLOW_UNFREE=1</programlisting>
|
||||||
</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem><para>
|
<listitem>
|
||||||
It is possible to permanently allow individual unfree packages,
|
<para>
|
||||||
while still blocking unfree packages by default using the
|
It is possible to permanently allow individual unfree packages, while
|
||||||
<literal>allowUnfreePredicate</literal> configuration
|
still blocking unfree packages by default using the
|
||||||
option in the user configuration file.</para>
|
<literal>allowUnfreePredicate</literal> configuration option in the user
|
||||||
|
configuration file.
|
||||||
<para>This option is a function which accepts a package as a
|
</para>
|
||||||
parameter, and returns a boolean. The following example
|
<para>
|
||||||
configuration accepts a package and always returns false:
|
This option is a function which accepts a package as a parameter, and
|
||||||
|
returns a boolean. The following example configuration accepts a package
|
||||||
|
and always returns false:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
allowUnfreePredicate = (pkg: false);
|
allowUnfreePredicate = (pkg: false);
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>A more useful example, the following configuration allows
|
A more useful example, the following configuration allows only allows
|
||||||
only allows flash player and visual studio code:
|
flash player and visual studio code:
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
allowUnfreePredicate = (pkg: elem (builtins.parseDrvName pkg.name).name [ "flashplayer" "vscode" ]);
|
allowUnfreePredicate = (pkg: elem (builtins.parseDrvName pkg.name).name [ "flashplayer" "vscode" ]);
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>It is also possible to whitelist and blacklist licenses
|
<para>
|
||||||
that are specifically acceptable or not acceptable, using
|
It is also possible to whitelist and blacklist licenses that are
|
||||||
|
specifically acceptable or not acceptable, using
|
||||||
<literal>whitelistedLicenses</literal> and
|
<literal>whitelistedLicenses</literal> and
|
||||||
<literal>blacklistedLicenses</literal>, respectively.
|
<literal>blacklistedLicenses</literal>, respectively.
|
||||||
</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>The following example configuration whitelists the
|
The following example configuration whitelists the licenses
|
||||||
licenses <literal>amd</literal> and <literal>wtfpl</literal>:
|
<literal>amd</literal> and <literal>wtfpl</literal>:
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
whitelistedLicenses = with stdenv.lib.licenses; [ amd wtfpl ];
|
whitelistedLicenses = with stdenv.lib.licenses; [ amd wtfpl ];
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>The following example configuration blacklists the
|
The following example configuration blacklists the <literal>gpl3</literal>
|
||||||
<literal>gpl3</literal> and <literal>agpl3</literal> licenses:
|
and <literal>agpl3</literal> licenses:
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
blacklistedLicenses = with stdenv.lib.licenses; [ agpl3 gpl3 ];
|
blacklistedLicenses = with stdenv.lib.licenses; [ agpl3 gpl3 ];
|
||||||
@@ -195,36 +212,38 @@ distributing the software.</para>
|
|||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
<para>A complete list of licenses can be found in the file
|
<para>
|
||||||
<filename>lib/licenses.nix</filename> of the nixpkgs tree.</para>
|
A complete list of licenses can be found in the file
|
||||||
</section>
|
<filename>lib/licenses.nix</filename> of the nixpkgs tree.
|
||||||
|
</para>
|
||||||
|
</section>
|
||||||
|
<section xml:id="sec-allow-insecure">
|
||||||
|
<title>Installing insecure packages</title>
|
||||||
|
|
||||||
|
<para>
|
||||||
<section xml:id="sec-allow-insecure">
|
There are several ways to tweak how Nix handles a package which has been
|
||||||
<title>
|
marked as insecure.
|
||||||
Installing insecure packages
|
</para>
|
||||||
</title>
|
|
||||||
|
|
||||||
<para>There are several ways to tweak how Nix handles a package
|
|
||||||
which has been marked as insecure.</para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>
|
<listitem>
|
||||||
To temporarily allow all insecure packages, you can use an
|
<para>
|
||||||
environment variable for a single invocation of the nix tools:
|
To temporarily allow all insecure packages, you can use an environment
|
||||||
|
variable for a single invocation of the nix tools:
|
||||||
<programlisting>$ export NIXPKGS_ALLOW_INSECURE=1</programlisting>
|
<programlisting>$ export NIXPKGS_ALLOW_INSECURE=1</programlisting>
|
||||||
</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem><para>
|
<listitem>
|
||||||
It is possible to permanently allow individual insecure
|
<para>
|
||||||
packages, while still blocking other insecure packages by
|
It is possible to permanently allow individual insecure packages, while
|
||||||
default using the <literal>permittedInsecurePackages</literal>
|
still blocking other insecure packages by default using the
|
||||||
configuration option in the user configuration file.</para>
|
<literal>permittedInsecurePackages</literal> configuration option in the
|
||||||
|
user configuration file.
|
||||||
<para>The following example configuration permits the
|
</para>
|
||||||
installation of the hypothetically insecure package
|
<para>
|
||||||
<literal>hello</literal>, version <literal>1.2.3</literal>:
|
The following example configuration permits the installation of the
|
||||||
|
hypothetically insecure package <literal>hello</literal>, version
|
||||||
|
<literal>1.2.3</literal>:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
permittedInsecurePackages = [
|
permittedInsecurePackages = [
|
||||||
@@ -234,45 +253,42 @@ distributing the software.</para>
|
|||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
<listitem><para>
|
<para>
|
||||||
It is also possible to create a custom policy around which
|
It is also possible to create a custom policy around which insecure
|
||||||
insecure packages to allow and deny, by overriding the
|
packages to allow and deny, by overriding the
|
||||||
<literal>allowInsecurePredicate</literal> configuration
|
<literal>allowInsecurePredicate</literal> configuration option.
|
||||||
option.</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>The <literal>allowInsecurePredicate</literal> option is a
|
The <literal>allowInsecurePredicate</literal> option is a function which
|
||||||
function which accepts a package and returns a boolean, much
|
accepts a package and returns a boolean, much like
|
||||||
like <literal>allowUnfreePredicate</literal>.</para>
|
<literal>allowUnfreePredicate</literal>.
|
||||||
|
</para>
|
||||||
<para>The following configuration example only allows insecure
|
<para>
|
||||||
packages with very short names:
|
The following configuration example only allows insecure packages with
|
||||||
|
very short names:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
allowInsecurePredicate = (pkg: (builtins.stringLength (builtins.parseDrvName pkg.name).name) <= 5);
|
allowInsecurePredicate = (pkg: (builtins.stringLength (builtins.parseDrvName pkg.name).name) <= 5);
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>Note that <literal>permittedInsecurePackages</literal> is
|
Note that <literal>permittedInsecurePackages</literal> is only checked if
|
||||||
only checked if <literal>allowInsecurePredicate</literal> is not
|
<literal>allowInsecurePredicate</literal> is not specified.
|
||||||
specified.
|
</para>
|
||||||
</para></listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!--============================================================-->
|
<!--============================================================-->
|
||||||
|
<section xml:id="sec-modify-via-packageOverrides">
|
||||||
|
<title>Modify packages via <literal>packageOverrides</literal></title>
|
||||||
|
|
||||||
<section xml:id="sec-modify-via-packageOverrides"><title>Modify
|
<para>
|
||||||
packages via <literal>packageOverrides</literal></title>
|
You can define a function called <varname>packageOverrides</varname> in your
|
||||||
|
local <filename>~/.config/nixpkgs/config.nix</filename> to override nix
|
||||||
<para>You can define a function called
|
packages. It must be a function that takes pkgs as an argument and return
|
||||||
<varname>packageOverrides</varname> in your local
|
modified set of packages.
|
||||||
<filename>~/.config/nixpkgs/config.nix</filename> to override nix packages. It
|
|
||||||
must be a function that takes pkgs as an argument and return modified
|
|
||||||
set of packages.
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
packageOverrides = pkgs: rec {
|
packageOverrides = pkgs: rec {
|
||||||
@@ -280,12 +296,9 @@ set of packages.
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
</para>
|
</section>
|
||||||
|
<section xml:id="sec-declarative-package-management">
|
||||||
</section>
|
|
||||||
|
|
||||||
<section xml:id="sec-declarative-package-management">
|
|
||||||
<title>Declarative Package Management</title>
|
<title>Declarative Package Management</title>
|
||||||
|
|
||||||
<section xml:id="sec-building-environment">
|
<section xml:id="sec-building-environment">
|
||||||
@@ -303,7 +316,7 @@ set of packages.
|
|||||||
use the following in <filename>~/.config/nixpkgs/config.nix</filename>:
|
use the following in <filename>~/.config/nixpkgs/config.nix</filename>:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
{
|
{
|
||||||
packageOverrides = pkgs: with pkgs; {
|
packageOverrides = pkgs: with pkgs; {
|
||||||
myPackages = pkgs.buildEnv {
|
myPackages = pkgs.buildEnv {
|
||||||
@@ -324,7 +337,7 @@ set of packages.
|
|||||||
some of it isn't. Let's tell Nixpkgs to only link the stuff that we want:
|
some of it isn't. Let's tell Nixpkgs to only link the stuff that we want:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
{
|
{
|
||||||
packageOverrides = pkgs: with pkgs; {
|
packageOverrides = pkgs: with pkgs; {
|
||||||
myPackages = pkgs.buildEnv {
|
myPackages = pkgs.buildEnv {
|
||||||
@@ -338,13 +351,12 @@ set of packages.
|
|||||||
|
|
||||||
<para>
|
<para>
|
||||||
<literal>pathsToLink</literal> tells Nixpkgs to only link the paths listed
|
<literal>pathsToLink</literal> tells Nixpkgs to only link the paths listed
|
||||||
which gets rid of the extra stuff in the profile.
|
which gets rid of the extra stuff in the profile. <filename>/bin</filename>
|
||||||
<filename>/bin</filename> and <filename>/share</filename> are good
|
and <filename>/share</filename> are good defaults for a user environment,
|
||||||
defaults for a user environment, getting rid of the clutter. If you are
|
getting rid of the clutter. If you are running on Nix on MacOS, you may
|
||||||
running on Nix on MacOS, you may want to add another path as well,
|
want to add another path as well, <filename>/Applications</filename>, that
|
||||||
<filename>/Applications</filename>, that makes GUI apps available.
|
makes GUI apps available.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="sec-getting-documentation">
|
<section xml:id="sec-getting-documentation">
|
||||||
@@ -360,7 +372,7 @@ set of packages.
|
|||||||
section 4). Let's make Nix install those as well.
|
section 4). Let's make Nix install those as well.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
{
|
{
|
||||||
packageOverrides = pkgs: with pkgs; {
|
packageOverrides = pkgs: with pkgs; {
|
||||||
myPackages = pkgs.buildEnv {
|
myPackages = pkgs.buildEnv {
|
||||||
@@ -376,11 +388,10 @@ set of packages.
|
|||||||
<para>
|
<para>
|
||||||
This provides us with some useful documentation for using our packages.
|
This provides us with some useful documentation for using our packages.
|
||||||
However, if we actually want those manpages to be detected by man, we need
|
However, if we actually want those manpages to be detected by man, we need
|
||||||
to set up our environment. This can also be managed within Nix
|
to set up our environment. This can also be managed within Nix expressions.
|
||||||
expressions.
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
{
|
{
|
||||||
packageOverrides = pkgs: with pkgs; rec {
|
packageOverrides = pkgs: with pkgs; rec {
|
||||||
myProfile = writeText "my-profile" ''
|
myProfile = writeText "my-profile" ''
|
||||||
@@ -413,12 +424,12 @@ cp ${myProfile} $out/etc/profile.d/my-profile.sh
|
|||||||
</screen>
|
</screen>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
For this to work fully, you must also have this script sourced when you
|
For this to work fully, you must also have this script sourced when you are
|
||||||
are logged in. Try adding something like this to your
|
logged in. Try adding something like this to your
|
||||||
<filename>~/.profile</filename> file:
|
<filename>~/.profile</filename> file:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
if [ -d $HOME/.nix-profile/etc/profile.d ]; then
|
if [ -d $HOME/.nix-profile/etc/profile.d ]; then
|
||||||
for i in $HOME/.nix-profile/etc/profile.d/*.sh; do
|
for i in $HOME/.nix-profile/etc/profile.d/*.sh; do
|
||||||
@@ -433,7 +444,6 @@ fi
|
|||||||
Now just run <literal>source $HOME/.profile</literal> and you can starting
|
Now just run <literal>source $HOME/.profile</literal> and you can starting
|
||||||
loading man pages from your environent.
|
loading man pages from your environent.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="sec-gnu-info-setup">
|
<section xml:id="sec-gnu-info-setup">
|
||||||
@@ -445,7 +455,7 @@ fi
|
|||||||
some small modifications to our environment scripts.
|
some small modifications to our environment scripts.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
{
|
{
|
||||||
packageOverrides = pkgs: with pkgs; rec {
|
packageOverrides = pkgs: with pkgs; rec {
|
||||||
myProfile = writeText "my-profile" ''
|
myProfile = writeText "my-profile" ''
|
||||||
@@ -494,9 +504,6 @@ cp ${myProfile} $out/etc/profile.d/my-profile.sh
|
|||||||
root node. Note that <literal>texinfoInteractive</literal> is added to the
|
root node. Note that <literal>texinfoInteractive</literal> is added to the
|
||||||
environment to give the <literal>install-info</literal> command.
|
environment to give the <literal>install-info</literal> command.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
</section>
|
||||||
</section>
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
+19
-19
@@ -1,35 +1,35 @@
|
|||||||
<chapter xmlns="http://docbook.org/ns/docbook"
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="chap-contributing">
|
xml:id="chap-contributing">
|
||||||
|
<title>Contributing to this documentation</title>
|
||||||
<title>Contributing to this documentation</title>
|
<para>
|
||||||
|
The DocBook sources of the Nixpkgs manual are in the
|
||||||
<para>The DocBook sources of the Nixpkgs manual are in the <filename
|
<filename
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/tree/master/doc">doc</filename>
|
xlink:href="https://github.com/NixOS/nixpkgs/tree/master/doc">doc</filename>
|
||||||
subdirectory of the Nixpkgs repository.</para>
|
subdirectory of the Nixpkgs repository.
|
||||||
|
</para>
|
||||||
<para>You can quickly check your edits with <command>make</command>:</para>
|
<para>
|
||||||
|
You can quickly check your edits with <command>make</command>:
|
||||||
|
</para>
|
||||||
<screen>
|
<screen>
|
||||||
$ cd /path/to/nixpkgs/doc
|
$ cd /path/to/nixpkgs/doc
|
||||||
$ nix-shell
|
$ nix-shell
|
||||||
[nix-shell]$ make
|
[nix-shell]$ make
|
||||||
</screen>
|
</screen>
|
||||||
|
<para>
|
||||||
<para>If you experience problems, run <command>make debug</command>
|
If you experience problems, run <command>make debug</command> to help
|
||||||
to help understand the docbook errors.</para>
|
understand the docbook errors.
|
||||||
|
</para>
|
||||||
<para>After making modifications to the manual, it's important to
|
<para>
|
||||||
build it before committing. You can do that as follows:
|
After making modifications to the manual, it's important to build it before
|
||||||
|
committing. You can do that as follows:
|
||||||
<screen>
|
<screen>
|
||||||
$ cd /path/to/nixpkgs/doc
|
$ cd /path/to/nixpkgs/doc
|
||||||
$ nix-shell
|
$ nix-shell
|
||||||
[nix-shell]$ make clean
|
[nix-shell]$ make clean
|
||||||
[nix-shell]$ nix-build .
|
[nix-shell]$ nix-build .
|
||||||
</screen>
|
</screen>
|
||||||
|
If the build succeeds, the manual will be in
|
||||||
If the build succeeds, the manual will be in
|
<filename>./result/share/doc/nixpkgs/manual.html</filename>.
|
||||||
<filename>./result/share/doc/nixpkgs/manual.html</filename>.</para>
|
</para>
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
+337
-176
@@ -1,153 +1,209 @@
|
|||||||
<chapter xmlns="http://docbook.org/ns/docbook"
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="chap-cross">
|
xml:id="chap-cross">
|
||||||
|
<title>Cross-compilation</title>
|
||||||
<title>Cross-compilation</title>
|
<section xml:id="sec-cross-intro">
|
||||||
|
|
||||||
<section xml:id="sec-cross-intro">
|
|
||||||
<title>Introduction</title>
|
<title>Introduction</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
"Cross-compilation" means compiling a program on one machine for another type of machine.
|
"Cross-compilation" means compiling a program on one machine for another
|
||||||
For example, a typical use of cross compilation is to compile programs for embedded devices.
|
type of machine. For example, a typical use of cross compilation is to
|
||||||
These devices often don't have the computing power and memory to compile their own programs.
|
compile programs for embedded devices. These devices often don't have the
|
||||||
One might think that cross-compilation is a fairly niche concern, but there are advantages to being rigorous about distinguishing build-time vs run-time environments even when one is developing and deploying on the same machine.
|
computing power and memory to compile their own programs. One might think
|
||||||
Nixpkgs is increasingly adopting the opinion that packages should be written with cross-compilation in mind, and nixpkgs should evaluate in a similar way (by minimizing cross-compilation-specific special cases) whether or not one is cross-compiling.
|
that cross-compilation is a fairly niche concern, but there are advantages
|
||||||
|
to being rigorous about distinguishing build-time vs run-time environments
|
||||||
|
even when one is developing and deploying on the same machine. Nixpkgs is
|
||||||
|
increasingly adopting the opinion that packages should be written with
|
||||||
|
cross-compilation in mind, and nixpkgs should evaluate in a similar way (by
|
||||||
|
minimizing cross-compilation-specific special cases) whether or not one is
|
||||||
|
cross-compiling.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
This chapter will be organized in three parts.
|
This chapter will be organized in three parts. First, it will describe the
|
||||||
First, it will describe the basics of how to package software in a way that supports cross-compilation.
|
basics of how to package software in a way that supports cross-compilation.
|
||||||
Second, it will describe how to use Nixpkgs when cross-compiling.
|
Second, it will describe how to use Nixpkgs when cross-compiling. Third, it
|
||||||
Third, it will describe the internal infrastructure supporting cross-compilation.
|
will describe the internal infrastructure supporting cross-compilation.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!--============================================================-->
|
<!--============================================================-->
|
||||||
|
<section xml:id="sec-cross-packaging">
|
||||||
<section xml:id="sec-cross-packaging">
|
|
||||||
<title>Packaging in a cross-friendly manner</title>
|
<title>Packaging in a cross-friendly manner</title>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<title>Platform parameters</title>
|
<title>Platform parameters</title>
|
||||||
<para>
|
|
||||||
Nixpkgs follows the <link xlink:href="https://gcc.gnu.org/onlinedocs/gccint/Configure-Terms.html">common historical convention of GNU autoconf</link> of distinguishing between 3 types of platform: <wordasword>build</wordasword>, <wordasword>host</wordasword>, and <wordasword>target</wordasword>.
|
|
||||||
|
|
||||||
In summary, <wordasword>build</wordasword> is the platform on which a package is being built, <wordasword>host</wordasword> is the platform on which it is to run. The third attribute, <wordasword>target</wordasword>, is relevant only for certain specific compilers and build tools.
|
<para>
|
||||||
|
Nixpkgs follows the
|
||||||
|
<link xlink:href="https://gcc.gnu.org/onlinedocs/gccint/Configure-Terms.html">common
|
||||||
|
historical convention of GNU autoconf</link> of distinguishing between 3
|
||||||
|
types of platform: <wordasword>build</wordasword>,
|
||||||
|
<wordasword>host</wordasword>, and <wordasword>target</wordasword>. In
|
||||||
|
summary, <wordasword>build</wordasword> is the platform on which a package
|
||||||
|
is being built, <wordasword>host</wordasword> is the platform on which it
|
||||||
|
is to run. The third attribute, <wordasword>target</wordasword>, is
|
||||||
|
relevant only for certain specific compilers and build tools.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
In Nixpkgs, these three platforms are defined as attribute sets under the names <literal>buildPlatform</literal>, <literal>hostPlatform</literal>, and <literal>targetPlatform</literal>.
|
In Nixpkgs, these three platforms are defined as attribute sets under the
|
||||||
All three are always defined as attributes in the standard environment, and at the top level. That means one can get at them just like a dependency in a function that is imported with <literal>callPackage</literal>:
|
names <literal>buildPlatform</literal>, <literal>hostPlatform</literal>,
|
||||||
<programlisting>{ stdenv, buildPlatform, hostPlatform, fooDep, barDep, .. }: ...buildPlatform...</programlisting>, or just off <varname>stdenv</varname>:
|
and <literal>targetPlatform</literal>. All three are always defined as
|
||||||
<programlisting>{ stdenv, fooDep, barDep, .. }: ...stdenv.buildPlatform...</programlisting>.
|
attributes in the standard environment, and at the top level. That means
|
||||||
|
one can get at them just like a dependency in a function that is imported
|
||||||
|
with <literal>callPackage</literal>:
|
||||||
|
<programlisting>{ stdenv, buildPlatform, hostPlatform, fooDep, barDep, .. }: ...buildPlatform...</programlisting>
|
||||||
|
, or just off <varname>stdenv</varname>:
|
||||||
|
<programlisting>{ stdenv, fooDep, barDep, .. }: ...stdenv.buildPlatform...</programlisting>
|
||||||
|
.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<variablelist>
|
<variablelist>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>buildPlatform</varname></term>
|
<term><varname>buildPlatform</varname>
|
||||||
<listitem><para>
|
</term>
|
||||||
The "build platform" is the platform on which a package is built.
|
|
||||||
Once someone has a built package, or pre-built binary package, the build platform should not matter and be safe to ignore.
|
|
||||||
</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
<varlistentry>
|
|
||||||
<term><varname>hostPlatform</varname></term>
|
|
||||||
<listitem><para>
|
|
||||||
The "host platform" is the platform on which a package will be run.
|
|
||||||
This is the simplest platform to understand, but also the one with the worst name.
|
|
||||||
</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
<varlistentry>
|
|
||||||
<term><varname>targetPlatform</varname></term>
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
The "target platform" attribute is, unlike the other two attributes, not actually fundamental to the process of building software.
|
The "build platform" is the platform on which a package is built. Once
|
||||||
Instead, it is only relevant for compatibility with building certain specific compilers and build tools.
|
someone has a built package, or pre-built binary package, the build
|
||||||
It can be safely ignored for all other packages.
|
platform should not matter and be safe to ignore.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>hostPlatform</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The "host platform" is the platform on which a package will be run. This
|
||||||
|
is the simplest platform to understand, but also the one with the worst
|
||||||
|
name.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>targetPlatform</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The "target platform" attribute is, unlike the other two attributes, not
|
||||||
|
actually fundamental to the process of building software. Instead, it is
|
||||||
|
only relevant for compatibility with building certain specific compilers
|
||||||
|
and build tools. It can be safely ignored for all other packages.
|
||||||
</para>
|
</para>
|
||||||
<para>
|
<para>
|
||||||
The build process of certain compilers is written in such a way that the compiler resulting from a single build can itself only produce binaries for a single platform.
|
The build process of certain compilers is written in such a way that the
|
||||||
The task specifying this single "target platform" is thus pushed to build time of the compiler.
|
compiler resulting from a single build can itself only produce binaries
|
||||||
The root cause of this mistake is often that the compiler (which will be run on the host) and the the standard library/runtime (which will be run on the target) are built by a single build process.
|
for a single platform. The task specifying this single "target platform"
|
||||||
|
is thus pushed to build time of the compiler. The root cause of this
|
||||||
|
mistake is often that the compiler (which will be run on the host) and
|
||||||
|
the the standard library/runtime (which will be run on the target) are
|
||||||
|
built by a single build process.
|
||||||
</para>
|
</para>
|
||||||
<para>
|
<para>
|
||||||
There is no fundamental need to think about a single target ahead of time like this.
|
There is no fundamental need to think about a single target ahead of
|
||||||
If the tool supports modular or pluggable backends, both the need to specify the target at build time and the constraint of having only a single target disappear.
|
time like this. If the tool supports modular or pluggable backends, both
|
||||||
An example of such a tool is LLVM.
|
the need to specify the target at build time and the constraint of
|
||||||
|
having only a single target disappear. An example of such a tool is
|
||||||
|
LLVM.
|
||||||
</para>
|
</para>
|
||||||
<para>
|
<para>
|
||||||
Although the existence of a "target platfom" is arguably a historical mistake, it is a common one: examples of tools that suffer from it are GCC, Binutils, GHC and Autoconf.
|
Although the existence of a "target platfom" is arguably a historical
|
||||||
Nixpkgs tries to avoid sharing in the mistake where possible.
|
mistake, it is a common one: examples of tools that suffer from it are
|
||||||
Still, because the concept of a target platform is so ingrained, it is best to support it as is.
|
GCC, Binutils, GHC and Autoconf. Nixpkgs tries to avoid sharing in the
|
||||||
|
mistake where possible. Still, because the concept of a target platform
|
||||||
|
is so ingrained, it is best to support it as is.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
</variablelist>
|
</variablelist>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The exact schema these fields follow is a bit ill-defined due to a long and convoluted evolution, but this is slowly being cleaned up.
|
The exact schema these fields follow is a bit ill-defined due to a long and
|
||||||
You can see examples of ones used in practice in <literal>lib.systems.examples</literal>; note how they are not all very consistent.
|
convoluted evolution, but this is slowly being cleaned up. You can see
|
||||||
For now, here are few fields can count on them containing:
|
examples of ones used in practice in
|
||||||
|
<literal>lib.systems.examples</literal>; note how they are not all very
|
||||||
|
consistent. For now, here are few fields can count on them containing:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<variablelist>
|
<variablelist>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>system</varname></term>
|
<term><varname>system</varname>
|
||||||
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
This is a two-component shorthand for the platform.
|
This is a two-component shorthand for the platform. Examples of this
|
||||||
Examples of this would be "x86_64-darwin" and "i686-linux"; see <literal>lib.systems.doubles</literal> for more.
|
would be "x86_64-darwin" and "i686-linux"; see
|
||||||
This format isn't very standard, but has built-in support in Nix, such as the <varname>builtins.currentSystem</varname> impure string.
|
<literal>lib.systems.doubles</literal> for more. This format isn't very
|
||||||
|
standard, but has built-in support in Nix, such as the
|
||||||
|
<varname>builtins.currentSystem</varname> impure string.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>config</varname></term>
|
<term><varname>config</varname>
|
||||||
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
This is a 3- or 4- component shorthand for the platform.
|
This is a 3- or 4- component shorthand for the platform. Examples of
|
||||||
Examples of this would be "x86_64-unknown-linux-gnu" and "aarch64-apple-darwin14".
|
this would be "x86_64-unknown-linux-gnu" and "aarch64-apple-darwin14".
|
||||||
This is a standard format called the "LLVM target triple", as they are pioneered by LLVM and traditionally just used for the <varname>targetPlatform</varname>.
|
This is a standard format called the "LLVM target triple", as they are
|
||||||
This format is strictly more informative than the "Nix host double", as the previous format could analogously be termed.
|
pioneered by LLVM and traditionally just used for the
|
||||||
This needs a better name than <varname>config</varname>!
|
<varname>targetPlatform</varname>. This format is strictly more
|
||||||
|
informative than the "Nix host double", as the previous format could
|
||||||
|
analogously be termed. This needs a better name than
|
||||||
|
<varname>config</varname>!
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>parsed</varname></term>
|
<term><varname>parsed</varname>
|
||||||
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
This is a nix representation of a parsed LLVM target triple with white-listed components.
|
This is a nix representation of a parsed LLVM target triple with
|
||||||
This can be specified directly, or actually parsed from the <varname>config</varname>.
|
white-listed components. This can be specified directly, or actually
|
||||||
[Technically, only one need be specified and the others can be inferred, though the precision of inference may not be very good.]
|
parsed from the <varname>config</varname>. [Technically, only one need
|
||||||
See <literal>lib.systems.parse</literal> for the exact representation.
|
be specified and the others can be inferred, though the precision of
|
||||||
|
inference may not be very good.] See
|
||||||
|
<literal>lib.systems.parse</literal> for the exact representation.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>libc</varname></term>
|
<term><varname>libc</varname>
|
||||||
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
This is a string identifying the standard C library used.
|
This is a string identifying the standard C library used. Valid
|
||||||
Valid identifiers include "glibc" for GNU libc, "libSystem" for Darwin's Libsystem, and "uclibc" for µClibc.
|
identifiers include "glibc" for GNU libc, "libSystem" for Darwin's
|
||||||
It should probably be refactored to use the module system, like <varname>parse</varname>.
|
Libsystem, and "uclibc" for µClibc. It should probably be refactored to
|
||||||
|
use the module system, like <varname>parse</varname>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>is*</varname></term>
|
<term><varname>is*</varname>
|
||||||
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
These predicates are defined in <literal>lib.systems.inspect</literal>, and slapped on every platform.
|
These predicates are defined in <literal>lib.systems.inspect</literal>,
|
||||||
They are superior to the ones in <varname>stdenv</varname> as they force the user to be explicit about which platform they are inspecting.
|
and slapped on every platform. They are superior to the ones in
|
||||||
Please use these instead of those.
|
<varname>stdenv</varname> as they force the user to be explicit about
|
||||||
|
which platform they are inspecting. Please use these instead of those.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>platform</varname></term>
|
<term><varname>platform</varname>
|
||||||
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
This is, quite frankly, a dumping ground of ad-hoc settings (it's an attribute set).
|
This is, quite frankly, a dumping ground of ad-hoc settings (it's an
|
||||||
See <literal>lib.systems.platforms</literal> for examples—there's hopefully one in there that will work verbatim for each platform that is working.
|
attribute set). See <literal>lib.systems.platforms</literal> for
|
||||||
Please help us triage these flags and give them better homes!
|
examples—there's hopefully one in there that will work verbatim for
|
||||||
|
each platform that is working. Please help us triage these flags and
|
||||||
|
give them better homes!
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
@@ -156,153 +212,258 @@
|
|||||||
|
|
||||||
<section>
|
<section>
|
||||||
<title>Specifying Dependencies</title>
|
<title>Specifying Dependencies</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
In this section we explore the relationship between both runtime and buildtime dependencies and the 3 Autoconf platforms.
|
In this section we explore the relationship between both runtime and
|
||||||
|
buildtime dependencies and the 3 Autoconf platforms.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
A runtime dependency between 2 packages implies that between them both the host and target platforms match.
|
A runtime dependency between 2 packages implies that between them both the
|
||||||
This is directly implied by the meaning of "host platform" and "runtime dependency":
|
host and target platforms match. This is directly implied by the meaning of
|
||||||
The package dependency exists while both packages are running on a single host platform.
|
"host platform" and "runtime dependency": The package dependency exists
|
||||||
|
while both packages are running on a single host platform.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
A build time dependency, however, implies a shift in platforms between the depending package and the depended-on package.
|
A build time dependency, however, implies a shift in platforms between the
|
||||||
The meaning of a build time dependency is that to build the depending package we need to be able to run the depended-on's package.
|
depending package and the depended-on package. The meaning of a build time
|
||||||
The depending package's build platform is therefore equal to the depended-on package's host platform.
|
dependency is that to build the depending package we need to be able to run
|
||||||
Analogously, the depending package's host platform is equal to the depended-on package's target platform.
|
the depended-on's package. The depending package's build platform is
|
||||||
|
therefore equal to the depended-on package's host platform. Analogously,
|
||||||
|
the depending package's host platform is equal to the depended-on package's
|
||||||
|
target platform.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
In this manner, given the 3 platforms for one package, we can determine the three platforms for all its transitive dependencies.
|
In this manner, given the 3 platforms for one package, we can determine the
|
||||||
This is the most important guiding principle behind cross-compilation with Nixpkgs, and will be called the <wordasword>sliding window principle</wordasword>.
|
three platforms for all its transitive dependencies. This is the most
|
||||||
|
important guiding principle behind cross-compilation with Nixpkgs, and will
|
||||||
|
be called the <wordasword>sliding window principle</wordasword>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Some examples will probably make this clearer.
|
Some examples will probably make this clearer. If a package is being built
|
||||||
If a package is being built with a <literal>(build, host, target)</literal> platform triple of <literal>(foo, bar, bar)</literal>, then its build-time dependencies would have a triple of <literal>(foo, foo, bar)</literal>, and <emphasis>those packages'</emphasis> build-time dependencies would have triple of <literal>(foo, foo, foo)</literal>.
|
with a <literal>(build, host, target)</literal> platform triple of
|
||||||
In other words, it should take two "rounds" of following build-time dependency edges before one reaches a fixed point where, by the sliding window principle, the platform triple no longer changes.
|
<literal>(foo, bar, bar)</literal>, then its build-time dependencies would
|
||||||
Indeed, this happens with cross compilation, where only rounds of native dependencies starting with the second necessarily coincide with native packages.
|
have a triple of <literal>(foo, foo, bar)</literal>, and <emphasis>those
|
||||||
|
packages'</emphasis> build-time dependencies would have triple of
|
||||||
|
<literal>(foo, foo, foo)</literal>. In other words, it should take two
|
||||||
|
"rounds" of following build-time dependency edges before one reaches a
|
||||||
|
fixed point where, by the sliding window principle, the platform triple no
|
||||||
|
longer changes. Indeed, this happens with cross compilation, where only
|
||||||
|
rounds of native dependencies starting with the second necessarily coincide
|
||||||
|
with native packages.
|
||||||
</para>
|
</para>
|
||||||
<note><para>
|
|
||||||
The depending package's target platform is unconstrained by the sliding window principle, which makes sense in that one can in principle build cross compilers targeting arbitrary platforms.
|
<note>
|
||||||
</para></note>
|
|
||||||
<para>
|
<para>
|
||||||
How does this work in practice? Nixpkgs is now structured so that build-time dependencies are taken from <varname>buildPackages</varname>, whereas run-time dependencies are taken from the top level attribute set.
|
The depending package's target platform is unconstrained by the sliding
|
||||||
For example, <varname>buildPackages.gcc</varname> should be used at build time, while <varname>gcc</varname> should be used at run time.
|
window principle, which makes sense in that one can in principle build
|
||||||
Now, for most of Nixpkgs's history, there was no <varname>buildPackages</varname>, and most packages have not been refactored to use it explicitly.
|
cross compilers targeting arbitrary platforms.
|
||||||
Instead, one can use the six (<emphasis>gasp</emphasis>) attributes used for specifying dependencies as documented in <xref linkend="ssec-stdenv-dependencies"/>.
|
|
||||||
We "splice" together the run-time and build-time package sets with <varname>callPackage</varname>, and then <varname>mkDerivation</varname> for each of four attributes pulls the right derivation out.
|
|
||||||
This splicing can be skipped when not cross compiling as the package sets are the same, but is a bit slow for cross compiling.
|
|
||||||
Because of this, a best-of-both-worlds solution is in the works with no splicing or explicit access of <varname>buildPackages</varname> needed.
|
|
||||||
For now, feel free to use either method.
|
|
||||||
</para>
|
</para>
|
||||||
<note><para>
|
</note>
|
||||||
There is also a "backlink" <varname>targetPackages</varname>, yielding a package set whose <varname>buildPackages</varname> is the current package set.
|
|
||||||
This is a hack, though, to accommodate compilers with lousy build systems.
|
<para>
|
||||||
Please do not use this unless you are absolutely sure you are packaging such a compiler and there is no other way.
|
How does this work in practice? Nixpkgs is now structured so that
|
||||||
</para></note>
|
build-time dependencies are taken from <varname>buildPackages</varname>,
|
||||||
|
whereas run-time dependencies are taken from the top level attribute set.
|
||||||
|
For example, <varname>buildPackages.gcc</varname> should be used at build
|
||||||
|
time, while <varname>gcc</varname> should be used at run time. Now, for
|
||||||
|
most of Nixpkgs's history, there was no <varname>buildPackages</varname>,
|
||||||
|
and most packages have not been refactored to use it explicitly. Instead,
|
||||||
|
one can use the six (<emphasis>gasp</emphasis>) attributes used for
|
||||||
|
specifying dependencies as documented in
|
||||||
|
<xref linkend="ssec-stdenv-dependencies"/>. We "splice" together the
|
||||||
|
run-time and build-time package sets with <varname>callPackage</varname>,
|
||||||
|
and then <varname>mkDerivation</varname> for each of four attributes pulls
|
||||||
|
the right derivation out. This splicing can be skipped when not cross
|
||||||
|
compiling as the package sets are the same, but is a bit slow for cross
|
||||||
|
compiling. Because of this, a best-of-both-worlds solution is in the works
|
||||||
|
with no splicing or explicit access of <varname>buildPackages</varname>
|
||||||
|
needed. For now, feel free to use either method.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<note>
|
||||||
|
<para>
|
||||||
|
There is also a "backlink" <varname>targetPackages</varname>, yielding a
|
||||||
|
package set whose <varname>buildPackages</varname> is the current package
|
||||||
|
set. This is a hack, though, to accommodate compilers with lousy build
|
||||||
|
systems. Please do not use this unless you are absolutely sure you are
|
||||||
|
packaging such a compiler and there is no other way.
|
||||||
|
</para>
|
||||||
|
</note>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<title>Cross packagaing cookbook</title>
|
<title>Cross packagaing cookbook</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Some frequently problems when packaging for cross compilation are good to just spell and answer.
|
Some frequently problems when packaging for cross compilation are good to
|
||||||
Ideally the information above is exhaustive, so this section cannot provide any new information,
|
just spell and answer. Ideally the information above is exhaustive, so this
|
||||||
but its ludicrous and cruel to expect everyone to spend effort working through the interaction of many features just to figure out the same answer to the same common problem.
|
section cannot provide any new information, but its ludicrous and cruel to
|
||||||
|
expect everyone to spend effort working through the interaction of many
|
||||||
|
features just to figure out the same answer to the same common problem.
|
||||||
Feel free to add to this list!
|
Feel free to add to this list!
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<qandaset>
|
<qandaset>
|
||||||
<qandaentry>
|
<qandaentry>
|
||||||
<question><para>
|
<question>
|
||||||
What if my package's build system needs to build a C program to be run under the build environment?
|
<para>
|
||||||
</para></question>
|
What if my package's build system needs to build a C program to be run
|
||||||
<answer><para>
|
under the build environment?
|
||||||
<programlisting>depsBuildBuild = [ buildPackages.stdenv.cc ];</programlisting>
|
</para>
|
||||||
|
</question>
|
||||||
|
<answer>
|
||||||
|
<para>
|
||||||
|
<programlisting>depsBuildBuild = [ buildPackages.stdenv.cc ];</programlisting>
|
||||||
Add it to your <function>mkDerivation</function> invocation.
|
Add it to your <function>mkDerivation</function> invocation.
|
||||||
</para></answer>
|
</para>
|
||||||
|
</answer>
|
||||||
</qandaentry>
|
</qandaentry>
|
||||||
<qandaentry>
|
<qandaentry>
|
||||||
<question><para>
|
<question>
|
||||||
|
<para>
|
||||||
My package fails to find <command>ar</command>.
|
My package fails to find <command>ar</command>.
|
||||||
</para></question>
|
</para>
|
||||||
<answer><para>
|
</question>
|
||||||
Many packages assume that an unprefixed <command>ar</command> is available, but Nix doesn't provide one.
|
<answer>
|
||||||
It only provides a prefixed one, just as it only does for all the other binutils programs.
|
<para>
|
||||||
It may be necessary to patch the package to fix the build system to use a prefixed `ar`.
|
Many packages assume that an unprefixed <command>ar</command> is
|
||||||
</para></answer>
|
available, but Nix doesn't provide one. It only provides a prefixed one,
|
||||||
|
just as it only does for all the other binutils programs. It may be
|
||||||
|
necessary to patch the package to fix the build system to use a prefixed
|
||||||
|
`ar`.
|
||||||
|
</para>
|
||||||
|
</answer>
|
||||||
</qandaentry>
|
</qandaentry>
|
||||||
<qandaentry>
|
<qandaentry>
|
||||||
<question><para>
|
<question>
|
||||||
|
<para>
|
||||||
My package's testsuite needs to run host platform code.
|
My package's testsuite needs to run host platform code.
|
||||||
</para></question>
|
</para>
|
||||||
<answer><para>
|
</question>
|
||||||
<programlisting>doCheck = stdenv.hostPlatform != stdenv.buildPlatfrom;</programlisting>
|
<answer>
|
||||||
|
<para>
|
||||||
|
<programlisting>doCheck = stdenv.hostPlatform != stdenv.buildPlatfrom;</programlisting>
|
||||||
Add it to your <function>mkDerivation</function> invocation.
|
Add it to your <function>mkDerivation</function> invocation.
|
||||||
</para></answer>
|
</para>
|
||||||
|
</answer>
|
||||||
</qandaentry>
|
</qandaentry>
|
||||||
</qandaset>
|
</qandaset>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!--============================================================-->
|
<!--============================================================-->
|
||||||
|
<section xml:id="sec-cross-usage">
|
||||||
<section xml:id="sec-cross-usage">
|
|
||||||
<title>Cross-building packages</title>
|
<title>Cross-building packages</title>
|
||||||
<note><para>
|
|
||||||
More information needs to moved from the old wiki, especially <link xlink:href="https://nixos.org/wiki/CrossCompiling" />, for this section.
|
<note>
|
||||||
</para></note>
|
|
||||||
<para>
|
<para>
|
||||||
Nixpkgs can be instantiated with <varname>localSystem</varname> alone, in which case there is no cross compiling and everything is built by and for that system,
|
More information needs to moved from the old wiki, especially
|
||||||
or also with <varname>crossSystem</varname>, in which case packages run on the latter, but all building happens on the former.
|
<link xlink:href="https://nixos.org/wiki/CrossCompiling" />, for this
|
||||||
Both parameters take the same schema as the 3 (build, host, and target) platforms defined in the previous section.
|
section.
|
||||||
As mentioned above, <literal>lib.systems.examples</literal> has some platforms which are used as arguments for these parameters in practice.
|
</para>
|
||||||
You can use them programmatically, or on the command line: <programlisting>
|
</note>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Nixpkgs can be instantiated with <varname>localSystem</varname> alone, in
|
||||||
|
which case there is no cross compiling and everything is built by and for
|
||||||
|
that system, or also with <varname>crossSystem</varname>, in which case
|
||||||
|
packages run on the latter, but all building happens on the former. Both
|
||||||
|
parameters take the same schema as the 3 (build, host, and target) platforms
|
||||||
|
defined in the previous section. As mentioned above,
|
||||||
|
<literal>lib.systems.examples</literal> has some platforms which are used as
|
||||||
|
arguments for these parameters in practice. You can use them
|
||||||
|
programmatically, or on the command line:
|
||||||
|
<programlisting>
|
||||||
nix-build <nixpkgs> --arg crossSystem '(import <nixpkgs/lib>).systems.examples.fooBarBaz' -A whatever</programlisting>
|
nix-build <nixpkgs> --arg crossSystem '(import <nixpkgs/lib>).systems.examples.fooBarBaz' -A whatever</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<note>
|
<note>
|
||||||
<para>
|
<para>
|
||||||
Eventually we would like to make these platform examples an unnecessary convenience so that <programlisting>
|
Eventually we would like to make these platform examples an unnecessary
|
||||||
|
convenience so that
|
||||||
|
<programlisting>
|
||||||
nix-build <nixpkgs> --arg crossSystem.config '<arch>-<os>-<vendor>-<abi>' -A whatever</programlisting>
|
nix-build <nixpkgs> --arg crossSystem.config '<arch>-<os>-<vendor>-<abi>' -A whatever</programlisting>
|
||||||
works in the vast majority of cases.
|
works in the vast majority of cases. The problem today is dependencies on
|
||||||
The problem today is dependencies on other sorts of configuration which aren't given proper defaults.
|
other sorts of configuration which aren't given proper defaults. We rely on
|
||||||
We rely on the examples to crudely to set those configuration parameters in some vaguely sane manner on the users behalf.
|
the examples to crudely to set those configuration parameters in some
|
||||||
Issue <link xlink:href="https://github.com/NixOS/nixpkgs/issues/34274">#34274</link> tracks this inconvenience along with its root cause in crufty configuration options.
|
vaguely sane manner on the users behalf. Issue
|
||||||
|
<link xlink:href="https://github.com/NixOS/nixpkgs/issues/34274">#34274</link>
|
||||||
|
tracks this inconvenience along with its root cause in crufty configuration
|
||||||
|
options.
|
||||||
</para>
|
</para>
|
||||||
</note>
|
</note>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
While one is free to pass both parameters in full, there's a lot of logic to fill in missing fields.
|
While one is free to pass both parameters in full, there's a lot of logic to
|
||||||
As discussed in the previous section, only one of <varname>system</varname>, <varname>config</varname>, and <varname>parsed</varname> is needed to infer the other two.
|
fill in missing fields. As discussed in the previous section, only one of
|
||||||
Additionally, <varname>libc</varname> will be inferred from <varname>parse</varname>.
|
<varname>system</varname>, <varname>config</varname>, and
|
||||||
Finally, <literal>localSystem.system</literal> is also <emphasis>impurely</emphasis> inferred based on the platform evaluation occurs.
|
<varname>parsed</varname> is needed to infer the other two. Additionally,
|
||||||
This means it is often not necessary to pass <varname>localSystem</varname> at all, as in the command-line example in the previous paragraph.
|
<varname>libc</varname> will be inferred from <varname>parse</varname>.
|
||||||
|
Finally, <literal>localSystem.system</literal> is also
|
||||||
|
<emphasis>impurely</emphasis> inferred based on the platform evaluation
|
||||||
|
occurs. This means it is often not necessary to pass
|
||||||
|
<varname>localSystem</varname> at all, as in the command-line example in the
|
||||||
|
previous paragraph.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<note>
|
<note>
|
||||||
<para>
|
<para>
|
||||||
Many sources (manual, wiki, etc) probably mention passing <varname>system</varname>, <varname>platform</varname>, along with the optional <varname>crossSystem</varname> to nixpkgs:
|
Many sources (manual, wiki, etc) probably mention passing
|
||||||
<literal>import <nixpkgs> { system = ..; platform = ..; crossSystem = ..; }</literal>.
|
<varname>system</varname>, <varname>platform</varname>, along with the
|
||||||
Passing those two instead of <varname>localSystem</varname> is still supported for compatibility, but is discouraged.
|
optional <varname>crossSystem</varname> to nixpkgs: <literal>import
|
||||||
Indeed, much of the inference we do for these parameters is motivated by compatibility as much as convenience.
|
<nixpkgs> { system = ..; platform = ..; crossSystem = ..;
|
||||||
|
}</literal>. Passing those two instead of <varname>localSystem</varname> is
|
||||||
|
still supported for compatibility, but is discouraged. Indeed, much of the
|
||||||
|
inference we do for these parameters is motivated by compatibility as much
|
||||||
|
as convenience.
|
||||||
</para>
|
</para>
|
||||||
</note>
|
</note>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
One would think that <varname>localSystem</varname> and <varname>crossSystem</varname> overlap horribly with the three <varname>*Platforms</varname> (<varname>buildPlatform</varname>, <varname>hostPlatform,</varname> and <varname>targetPlatform</varname>; see <varname>stage.nix</varname> or the manual).
|
One would think that <varname>localSystem</varname> and
|
||||||
Actually, those identifiers are purposefully not used here to draw a subtle but important distinction:
|
<varname>crossSystem</varname> overlap horribly with the three
|
||||||
While the granularity of having 3 platforms is necessary to properly *build* packages, it is overkill for specifying the user's *intent* when making a build plan or package set.
|
<varname>*Platforms</varname> (<varname>buildPlatform</varname>,
|
||||||
A simple "build vs deploy" dichotomy is adequate: the sliding window principle described in the previous section shows how to interpolate between the these two "end points" to get the 3 platform triple for each bootstrapping stage.
|
<varname>hostPlatform,</varname> and <varname>targetPlatform</varname>; see
|
||||||
That means for any package a given package set, even those not bound on the top level but only reachable via dependencies or <varname>buildPackages</varname>, the three platforms will be defined as one of <varname>localSystem</varname> or <varname>crossSystem</varname>, with the former replacing the latter as one traverses build-time dependencies.
|
<varname>stage.nix</varname> or the manual). Actually, those identifiers are
|
||||||
A last simple difference then is <varname>crossSystem</varname> should be null when one doesn't want to cross-compile, while the <varname>*Platform</varname>s are always non-null.
|
purposefully not used here to draw a subtle but important distinction: While
|
||||||
|
the granularity of having 3 platforms is necessary to properly *build*
|
||||||
|
packages, it is overkill for specifying the user's *intent* when making a
|
||||||
|
build plan or package set. A simple "build vs deploy" dichotomy is adequate:
|
||||||
|
the sliding window principle described in the previous section shows how to
|
||||||
|
interpolate between the these two "end points" to get the 3 platform triple
|
||||||
|
for each bootstrapping stage. That means for any package a given package
|
||||||
|
set, even those not bound on the top level but only reachable via
|
||||||
|
dependencies or <varname>buildPackages</varname>, the three platforms will
|
||||||
|
be defined as one of <varname>localSystem</varname> or
|
||||||
|
<varname>crossSystem</varname>, with the former replacing the latter as one
|
||||||
|
traverses build-time dependencies. A last simple difference then is
|
||||||
|
<varname>crossSystem</varname> should be null when one doesn't want to
|
||||||
|
cross-compile, while the <varname>*Platform</varname>s are always non-null.
|
||||||
<varname>localSystem</varname> is always non-null.
|
<varname>localSystem</varname> is always non-null.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!--============================================================-->
|
<!--============================================================-->
|
||||||
|
<section xml:id="sec-cross-infra">
|
||||||
<section xml:id="sec-cross-infra">
|
|
||||||
<title>Cross-compilation infrastructure</title>
|
<title>Cross-compilation infrastructure</title>
|
||||||
<para>To be written.</para>
|
|
||||||
<note><para>
|
|
||||||
If one explores nixpkgs, they will see derivations with names like <literal>gccCross</literal>.
|
|
||||||
Such <literal>*Cross</literal> derivations is a holdover from before we properly distinguished between the host and target platforms
|
|
||||||
—the derivation with "Cross" in the name covered the <literal>build = host != target</literal> case, while the other covered the <literal>host = target</literal>, with build platform the same or not based on whether one was using its <literal>.nativeDrv</literal> or <literal>.crossDrv</literal>.
|
|
||||||
This ugliness will disappear soon.
|
|
||||||
</para></note>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
To be written.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<note>
|
||||||
|
<para>
|
||||||
|
If one explores nixpkgs, they will see derivations with names like
|
||||||
|
<literal>gccCross</literal>. Such <literal>*Cross</literal> derivations is
|
||||||
|
a holdover from before we properly distinguished between the host and
|
||||||
|
target platforms —the derivation with "Cross" in the name covered the
|
||||||
|
<literal>build = host != target</literal> case, while the other covered the
|
||||||
|
<literal>host = target</literal>, with build platform the same or not based
|
||||||
|
on whether one was using its <literal>.nativeDrv</literal> or
|
||||||
|
<literal>.crossDrv</literal>. This ugliness will disappear soon.
|
||||||
|
</para>
|
||||||
|
</note>
|
||||||
|
</section>
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
+2
-1
@@ -7,7 +7,7 @@ in
|
|||||||
pkgs.stdenv.mkDerivation {
|
pkgs.stdenv.mkDerivation {
|
||||||
name = "nixpkgs-manual";
|
name = "nixpkgs-manual";
|
||||||
|
|
||||||
buildInputs = with pkgs; [ pandoc libxml2 libxslt zip jing ];
|
buildInputs = with pkgs; [ pandoc libxml2 libxslt zip jing xmlformat ];
|
||||||
|
|
||||||
src = ./.;
|
src = ./.;
|
||||||
|
|
||||||
@@ -18,6 +18,7 @@ pkgs.stdenv.mkDerivation {
|
|||||||
HIGHLIGHTJS = pkgs.documentation-highlighter;
|
HIGHLIGHTJS = pkgs.documentation-highlighter;
|
||||||
XSL = "${pkgs.docbook5_xsl}/xml/xsl";
|
XSL = "${pkgs.docbook5_xsl}/xml/xsl";
|
||||||
RNG = "${pkgs.docbook5}/xml/rng/docbook/docbook.rng";
|
RNG = "${pkgs.docbook5}/xml/rng/docbook/docbook.rng";
|
||||||
|
XMLFORMAT_CONFIG = ../nixos/doc/xmlformat.conf;
|
||||||
xsltFlags = lib.concatStringsSep " " [
|
xsltFlags = lib.concatStringsSep " " [
|
||||||
"--param section.autolabel 1"
|
"--param section.autolabel 1"
|
||||||
"--param section.label.includes.component.label 1"
|
"--param section.label.includes.component.label 1"
|
||||||
|
|||||||
+290
-297
@@ -1,20 +1,18 @@
|
|||||||
<chapter xmlns="http://docbook.org/ns/docbook"
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="chap-functions">
|
xml:id="chap-functions">
|
||||||
|
<title>Functions reference</title>
|
||||||
<title>Functions reference</title>
|
<para>
|
||||||
|
The nixpkgs repository has several utility functions to manipulate Nix
|
||||||
<para>
|
expressions.
|
||||||
The nixpkgs repository has several utility functions to manipulate Nix expressions.
|
</para>
|
||||||
</para>
|
<section xml:id="sec-overrides">
|
||||||
|
|
||||||
<section xml:id="sec-overrides">
|
|
||||||
<title>Overriding</title>
|
<title>Overriding</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Sometimes one wants to override parts of
|
Sometimes one wants to override parts of <literal>nixpkgs</literal>, e.g.
|
||||||
<literal>nixpkgs</literal>, e.g. derivation attributes, the results of
|
derivation attributes, the results of derivations or even the whole package
|
||||||
derivations or even the whole package set.
|
set.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<section xml:id="sec-pkg-override">
|
<section xml:id="sec-pkg-override">
|
||||||
@@ -24,28 +22,28 @@
|
|||||||
The function <varname>override</varname> is usually available for all the
|
The function <varname>override</varname> is usually available for all the
|
||||||
derivations in the nixpkgs expression (<varname>pkgs</varname>).
|
derivations in the nixpkgs expression (<varname>pkgs</varname>).
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
It is used to override the arguments passed to a function.
|
It is used to override the arguments passed to a function.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Example usages:
|
Example usages:
|
||||||
|
<programlisting>pkgs.foo.override { arg1 = val1; arg2 = val2; ... }</programlisting>
|
||||||
<programlisting>pkgs.foo.override { arg1 = val1; arg2 = val2; ... }</programlisting>
|
<programlisting>import pkgs.path { overlays = [ (self: super: {
|
||||||
<programlisting>import pkgs.path { overlays = [ (self: super: {
|
|
||||||
foo = super.foo.override { barSupport = true ; };
|
foo = super.foo.override { barSupport = true ; };
|
||||||
})]};</programlisting>
|
})]};</programlisting>
|
||||||
<programlisting>mypkg = pkgs.callPackage ./mypkg.nix {
|
<programlisting>mypkg = pkgs.callPackage ./mypkg.nix {
|
||||||
mydep = pkgs.mydep.override { ... };
|
mydep = pkgs.mydep.override { ... };
|
||||||
}</programlisting>
|
}</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
In the first example, <varname>pkgs.foo</varname> is the result of a function call
|
In the first example, <varname>pkgs.foo</varname> is the result of a
|
||||||
with some default arguments, usually a derivation.
|
function call with some default arguments, usually a derivation. Using
|
||||||
Using <varname>pkgs.foo.override</varname> will call the same function with
|
<varname>pkgs.foo.override</varname> will call the same function with the
|
||||||
the given new arguments.
|
given new arguments.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="sec-pkg-overrideAttrs">
|
<section xml:id="sec-pkg-overrideAttrs">
|
||||||
@@ -54,16 +52,15 @@
|
|||||||
<para>
|
<para>
|
||||||
The function <varname>overrideAttrs</varname> allows overriding the
|
The function <varname>overrideAttrs</varname> allows overriding the
|
||||||
attribute set passed to a <varname>stdenv.mkDerivation</varname> call,
|
attribute set passed to a <varname>stdenv.mkDerivation</varname> call,
|
||||||
producing a new derivation based on the original one.
|
producing a new derivation based on the original one. This function is
|
||||||
This function is available on all derivations produced by the
|
available on all derivations produced by the
|
||||||
<varname>stdenv.mkDerivation</varname> function, which is most packages
|
<varname>stdenv.mkDerivation</varname> function, which is most packages in
|
||||||
in the nixpkgs expression <varname>pkgs</varname>.
|
the nixpkgs expression <varname>pkgs</varname>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Example usage:
|
Example usage:
|
||||||
|
<programlisting>helloWithDebug = pkgs.hello.overrideAttrs (oldAttrs: rec {
|
||||||
<programlisting>helloWithDebug = pkgs.hello.overrideAttrs (oldAttrs: rec {
|
|
||||||
separateDebugInfo = true;
|
separateDebugInfo = true;
|
||||||
});</programlisting>
|
});</programlisting>
|
||||||
</para>
|
</para>
|
||||||
@@ -84,28 +81,27 @@
|
|||||||
<para>
|
<para>
|
||||||
Note that <varname>separateDebugInfo</varname> is processed only by the
|
Note that <varname>separateDebugInfo</varname> is processed only by the
|
||||||
<varname>stdenv.mkDerivation</varname> function, not the generated, raw
|
<varname>stdenv.mkDerivation</varname> function, not the generated, raw
|
||||||
Nix derivation. Thus, using <varname>overrideDerivation</varname> will
|
Nix derivation. Thus, using <varname>overrideDerivation</varname> will not
|
||||||
not work in this case, as it overrides only the attributes of the final
|
work in this case, as it overrides only the attributes of the final
|
||||||
derivation. It is for this reason that <varname>overrideAttrs</varname>
|
derivation. It is for this reason that <varname>overrideAttrs</varname>
|
||||||
should be preferred in (almost) all cases to
|
should be preferred in (almost) all cases to
|
||||||
<varname>overrideDerivation</varname>, i.e. to allow using
|
<varname>overrideDerivation</varname>, i.e. to allow using
|
||||||
<varname>sdenv.mkDerivation</varname> to process input arguments, as well
|
<varname>sdenv.mkDerivation</varname> to process input arguments, as well
|
||||||
as the fact that it is easier to use (you can use the same attribute
|
as the fact that it is easier to use (you can use the same attribute names
|
||||||
names you see in your Nix code, instead of the ones generated (e.g.
|
you see in your Nix code, instead of the ones generated (e.g.
|
||||||
<varname>buildInputs</varname> vs <varname>nativeBuildInputs</varname>,
|
<varname>buildInputs</varname> vs <varname>nativeBuildInputs</varname>,
|
||||||
and involves less typing.
|
and involves less typing.
|
||||||
</para>
|
</para>
|
||||||
</note>
|
</note>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
||||||
<section xml:id="sec-pkg-overrideDerivation">
|
<section xml:id="sec-pkg-overrideDerivation">
|
||||||
<title><pkg>.overrideDerivation</title>
|
<title><pkg>.overrideDerivation</title>
|
||||||
|
|
||||||
<warning>
|
<warning>
|
||||||
<para>You should prefer <varname>overrideAttrs</varname> in almost all
|
<para>
|
||||||
cases, see its documentation for the reasons why.
|
You should prefer <varname>overrideAttrs</varname> in almost all cases,
|
||||||
|
see its documentation for the reasons why.
|
||||||
<varname>overrideDerivation</varname> is not deprecated and will continue
|
<varname>overrideDerivation</varname> is not deprecated and will continue
|
||||||
to work, but is less nice to use and does not have as many abilities as
|
to work, but is less nice to use and does not have as many abilities as
|
||||||
<varname>overrideAttrs</varname>.
|
<varname>overrideAttrs</varname>.
|
||||||
@@ -113,32 +109,31 @@
|
|||||||
</warning>
|
</warning>
|
||||||
|
|
||||||
<warning>
|
<warning>
|
||||||
<para>Do not use this function in Nixpkgs as it evaluates a Derivation
|
<para>
|
||||||
before modifying it, which breaks package abstraction and removes
|
Do not use this function in Nixpkgs as it evaluates a Derivation before
|
||||||
error-checking of function arguments. In addition, this
|
modifying it, which breaks package abstraction and removes error-checking
|
||||||
evaluation-per-function application incurs a performance penalty,
|
of function arguments. In addition, this evaluation-per-function
|
||||||
which can become a problem if many overrides are used.
|
application incurs a performance penalty, which can become a problem if
|
||||||
It is only intended for ad-hoc customisation, such as in
|
many overrides are used. It is only intended for ad-hoc customisation,
|
||||||
<filename>~/.config/nixpkgs/config.nix</filename>.
|
such as in <filename>~/.config/nixpkgs/config.nix</filename>.
|
||||||
</para>
|
</para>
|
||||||
</warning>
|
</warning>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The function <varname>overrideDerivation</varname> creates a new derivation
|
The function <varname>overrideDerivation</varname> creates a new derivation
|
||||||
based on an existing one by overriding the original's attributes with
|
based on an existing one by overriding the original's attributes with the
|
||||||
the attribute set produced by the specified function.
|
attribute set produced by the specified function. This function is
|
||||||
This function is available on all
|
available on all derivations defined using the
|
||||||
derivations defined using the <varname>makeOverridable</varname> function.
|
<varname>makeOverridable</varname> function. Most standard
|
||||||
Most standard derivation-producing functions, such as
|
derivation-producing functions, such as
|
||||||
<varname>stdenv.mkDerivation</varname>, are defined using this
|
<varname>stdenv.mkDerivation</varname>, are defined using this function,
|
||||||
function, which means most packages in the nixpkgs expression,
|
which means most packages in the nixpkgs expression,
|
||||||
<varname>pkgs</varname>, have this function.
|
<varname>pkgs</varname>, have this function.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Example usage:
|
Example usage:
|
||||||
|
<programlisting>mySed = pkgs.gnused.overrideDerivation (oldAttrs: {
|
||||||
<programlisting>mySed = pkgs.gnused.overrideDerivation (oldAttrs: {
|
|
||||||
name = "sed-4.2.2-pre";
|
name = "sed-4.2.2-pre";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = ftp://alpha.gnu.org/gnu/sed/sed-4.2.2-pre.tar.bz2;
|
url = ftp://alpha.gnu.org/gnu/sed/sed-4.2.2-pre.tar.bz2;
|
||||||
@@ -155,75 +150,67 @@
|
|||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The argument <varname>oldAttrs</varname> is used to refer to the attribute set of
|
The argument <varname>oldAttrs</varname> is used to refer to the attribute
|
||||||
the original derivation.
|
set of the original derivation.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<note>
|
<note>
|
||||||
<para>
|
<para>
|
||||||
A package's attributes are evaluated *before* being modified by
|
A package's attributes are evaluated *before* being modified by the
|
||||||
the <varname>overrideDerivation</varname> function.
|
<varname>overrideDerivation</varname> function. For example, the
|
||||||
For example, the <varname>name</varname> attribute reference
|
<varname>name</varname> attribute reference in <varname>url =
|
||||||
in <varname>url = "mirror://gnu/hello/${name}.tar.gz";</varname>
|
"mirror://gnu/hello/${name}.tar.gz";</varname> is filled-in *before* the
|
||||||
is filled-in *before* the <varname>overrideDerivation</varname> function
|
<varname>overrideDerivation</varname> function modifies the attribute set.
|
||||||
modifies the attribute set. This means that overriding the
|
This means that overriding the <varname>name</varname> attribute, in this
|
||||||
<varname>name</varname> attribute, in this example, *will not* change the
|
example, *will not* change the value of the <varname>url</varname>
|
||||||
value of the <varname>url</varname> attribute. Instead, we need to override
|
attribute. Instead, we need to override both the <varname>name</varname>
|
||||||
both the <varname>name</varname> *and* <varname>url</varname> attributes.
|
*and* <varname>url</varname> attributes.
|
||||||
</para>
|
</para>
|
||||||
</note>
|
</note>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="sec-lib-makeOverridable">
|
<section xml:id="sec-lib-makeOverridable">
|
||||||
<title>lib.makeOverridable</title>
|
<title>lib.makeOverridable</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The function <varname>lib.makeOverridable</varname> is used to make the result
|
The function <varname>lib.makeOverridable</varname> is used to make the
|
||||||
of a function easily customizable. This utility only makes sense for functions
|
result of a function easily customizable. This utility only makes sense for
|
||||||
that accept an argument set and return an attribute set.
|
functions that accept an argument set and return an attribute set.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Example usage:
|
Example usage:
|
||||||
|
<programlisting>f = { a, b }: { result = a+b; }
|
||||||
<programlisting>f = { a, b }: { result = a+b; }
|
|
||||||
c = lib.makeOverridable f { a = 1; b = 2; }</programlisting>
|
c = lib.makeOverridable f { a = 1; b = 2; }</programlisting>
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The variable <varname>c</varname> is the value of the <varname>f</varname> function
|
The variable <varname>c</varname> is the value of the <varname>f</varname>
|
||||||
applied with some default arguments. Hence the value of <varname>c.result</varname>
|
function applied with some default arguments. Hence the value of
|
||||||
is <literal>3</literal>, in this example.
|
<varname>c.result</varname> is <literal>3</literal>, in this example.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The variable <varname>c</varname> however also has some additional functions, like
|
The variable <varname>c</varname> however also has some additional
|
||||||
<link linkend="sec-pkg-override">c.override</link> which can be used to
|
functions, like <link linkend="sec-pkg-override">c.override</link> which
|
||||||
override the default arguments. In this example the value of
|
can be used to override the default arguments. In this example the value of
|
||||||
<varname>(c.override { a = 4; }).result</varname> is 6.
|
<varname>(c.override { a = 4; }).result</varname> is 6.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
</section>
|
||||||
</section>
|
<section xml:id="sec-generators">
|
||||||
|
|
||||||
<section xml:id="sec-generators">
|
|
||||||
<title>Generators</title>
|
<title>Generators</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Generators are functions that create file formats from nix
|
Generators are functions that create file formats from nix data structures,
|
||||||
data structures, e. g. for configuration files.
|
e. g. for configuration files. There are generators available for:
|
||||||
There are generators available for: <literal>INI</literal>,
|
<literal>INI</literal>, <literal>JSON</literal> and <literal>YAML</literal>
|
||||||
<literal>JSON</literal> and <literal>YAML</literal>
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
All generators follow a similar call interface: <code>generatorName
|
All generators follow a similar call interface: <code>generatorName
|
||||||
configFunctions data</code>, where <literal>configFunctions</literal> is
|
configFunctions data</code>, where <literal>configFunctions</literal> is an
|
||||||
an attrset of user-defined functions that format nested parts of the
|
attrset of user-defined functions that format nested parts of the content.
|
||||||
content.
|
|
||||||
They each have common defaults, so often they do not need to be set
|
They each have common defaults, so often they do not need to be set
|
||||||
manually. An example is <code>mkSectionName ? (name: libStr.escape [ "[" "]"
|
manually. An example is <code>mkSectionName ? (name: libStr.escape [ "[" "]"
|
||||||
] name)</code> from the <literal>INI</literal> generator. It receives the
|
] name)</code> from the <literal>INI</literal> generator. It receives the
|
||||||
@@ -233,11 +220,11 @@
|
|||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Generators can be fine-tuned to produce exactly the file format required
|
Generators can be fine-tuned to produce exactly the file format required by
|
||||||
by your application/service. One example is an INI-file format which uses
|
your application/service. One example is an INI-file format which uses
|
||||||
<literal>: </literal> as separator, the strings
|
<literal>: </literal> as separator, the strings
|
||||||
<literal>"yes"</literal>/<literal>"no"</literal> as boolean values
|
<literal>"yes"</literal>/<literal>"no"</literal> as boolean values and
|
||||||
and requires all string values to be quoted:
|
requires all string values to be quoted:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
@@ -270,7 +257,9 @@ in customToINI {
|
|||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>This will produce the following INI file as nix string:</para>
|
<para>
|
||||||
|
This will produce the following INI file as nix string:
|
||||||
|
</para>
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
[main]
|
[main]
|
||||||
@@ -284,105 +273,132 @@ str\:ange:"very::strange"
|
|||||||
merge:"diff3"
|
merge:"diff3"
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<note><para>Nix store paths can be converted to strings by enclosing a
|
<note>
|
||||||
derivation attribute like so: <code>"${drv}"</code>.</para></note>
|
<para>
|
||||||
|
Nix store paths can be converted to strings by enclosing a derivation
|
||||||
|
attribute like so: <code>"${drv}"</code>.
|
||||||
|
</para>
|
||||||
|
</note>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Detailed documentation for each generator can be found in
|
Detailed documentation for each generator can be found in
|
||||||
<literal>lib/generators.nix</literal>.
|
<literal>lib/generators.nix</literal>.
|
||||||
</para>
|
</para>
|
||||||
|
</section>
|
||||||
</section>
|
<section xml:id="sec-debug">
|
||||||
|
|
||||||
<section xml:id="sec-debug">
|
|
||||||
<title>Debugging Nix Expressions</title>
|
<title>Debugging Nix Expressions</title>
|
||||||
|
|
||||||
<para>Nix is a unityped, dynamic language, this means every value can
|
<para>
|
||||||
potentially appear anywhere. Since it is also non-strict, evaluation order
|
Nix is a unityped, dynamic language, this means every value can potentially
|
||||||
and what ultimately is evaluated might surprise you. Therefore it is important
|
appear anywhere. Since it is also non-strict, evaluation order and what
|
||||||
to be able to debug nix expressions.</para>
|
ultimately is evaluated might surprise you. Therefore it is important to be
|
||||||
|
able to debug nix expressions.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
<para>In the <literal>lib/debug.nix</literal> file you will find a number of
|
In the <literal>lib/debug.nix</literal> file you will find a number of
|
||||||
functions that help (pretty-)printing values while evaluation is runnnig. You
|
functions that help (pretty-)printing values while evaluation is runnnig.
|
||||||
can even specify how deep these values should be printed recursively, and
|
You can even specify how deep these values should be printed recursively,
|
||||||
transform them on the fly. Please consult the docstrings in
|
and transform them on the fly. Please consult the docstrings in
|
||||||
<literal>lib/debug.nix</literal> for usage information.</para>
|
<literal>lib/debug.nix</literal> for usage information.
|
||||||
</section>
|
</para>
|
||||||
|
</section>
|
||||||
|
<section xml:id="sec-fhs-environments">
|
||||||
<section xml:id="sec-fhs-environments">
|
|
||||||
<title>buildFHSUserEnv</title>
|
<title>buildFHSUserEnv</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
<function>buildFHSUserEnv</function> provides a way to build and run
|
<function>buildFHSUserEnv</function> provides a way to build and run
|
||||||
FHS-compatible lightweight sandboxes. It creates an isolated root with
|
FHS-compatible lightweight sandboxes. It creates an isolated root with bound
|
||||||
bound <filename>/nix/store</filename>, so its footprint in terms of disk
|
<filename>/nix/store</filename>, so its footprint in terms of disk space
|
||||||
space needed is quite small. This allows one to run software which is hard or
|
needed is quite small. This allows one to run software which is hard or
|
||||||
unfeasible to patch for NixOS -- 3rd-party source trees with FHS assumptions,
|
unfeasible to patch for NixOS -- 3rd-party source trees with FHS
|
||||||
games distributed as tarballs, software with integrity checking and/or external
|
assumptions, games distributed as tarballs, software with integrity checking
|
||||||
self-updated binaries. It uses Linux namespaces feature to create
|
and/or external self-updated binaries. It uses Linux namespaces feature to
|
||||||
temporary lightweight environments which are destroyed after all child
|
create temporary lightweight environments which are destroyed after all
|
||||||
processes exit, without root user rights requirement. Accepted arguments are:
|
child processes exit, without root user rights requirement. Accepted
|
||||||
|
arguments are:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<variablelist>
|
<variablelist>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>name</literal></term>
|
<term><literal>name</literal>
|
||||||
|
</term>
|
||||||
<listitem><para>Environment name.</para></listitem>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Environment name.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>targetPkgs</literal></term>
|
<term><literal>targetPkgs</literal>
|
||||||
|
</term>
|
||||||
<listitem><para>Packages to be installed for the main host's architecture
|
<listitem>
|
||||||
(i.e. x86_64 on x86_64 installations). Along with libraries binaries are also
|
<para>
|
||||||
installed.</para></listitem>
|
Packages to be installed for the main host's architecture (i.e. x86_64 on
|
||||||
|
x86_64 installations). Along with libraries binaries are also installed.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>multiPkgs</literal></term>
|
<term><literal>multiPkgs</literal>
|
||||||
|
</term>
|
||||||
<listitem><para>Packages to be installed for all architectures supported by
|
<listitem>
|
||||||
a host (i.e. i686 and x86_64 on x86_64 installations). Only libraries are
|
<para>
|
||||||
installed by default.</para></listitem>
|
Packages to be installed for all architectures supported by a host (i.e.
|
||||||
|
i686 and x86_64 on x86_64 installations). Only libraries are installed by
|
||||||
|
default.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>extraBuildCommands</literal></term>
|
<term><literal>extraBuildCommands</literal>
|
||||||
|
</term>
|
||||||
<listitem><para>Additional commands to be executed for finalizing the
|
<listitem>
|
||||||
directory structure.</para></listitem>
|
<para>
|
||||||
|
Additional commands to be executed for finalizing the directory
|
||||||
|
structure.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>extraBuildCommandsMulti</literal></term>
|
<term><literal>extraBuildCommandsMulti</literal>
|
||||||
|
</term>
|
||||||
<listitem><para>Like <literal>extraBuildCommands</literal>, but
|
<listitem>
|
||||||
executed only on multilib architectures.</para></listitem>
|
<para>
|
||||||
|
Like <literal>extraBuildCommands</literal>, but executed only on multilib
|
||||||
|
architectures.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>extraOutputsToInstall</literal></term>
|
<term><literal>extraOutputsToInstall</literal>
|
||||||
|
</term>
|
||||||
<listitem><para>Additional derivation outputs to be linked for both
|
<listitem>
|
||||||
target and multi-architecture packages.</para></listitem>
|
<para>
|
||||||
|
Additional derivation outputs to be linked for both target and
|
||||||
|
multi-architecture packages.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>extraInstallCommands</literal></term>
|
<term><literal>extraInstallCommands</literal>
|
||||||
|
</term>
|
||||||
<listitem><para>Additional commands to be executed for finalizing the
|
<listitem>
|
||||||
derivation with runner script.</para></listitem>
|
<para>
|
||||||
|
Additional commands to be executed for finalizing the derivation with
|
||||||
|
runner script.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>runScript</literal></term>
|
<term><literal>runScript</literal>
|
||||||
|
</term>
|
||||||
<listitem><para>A command that would be executed inside the sandbox and
|
<listitem>
|
||||||
passed all the command line arguments. It defaults to
|
<para>
|
||||||
<literal>bash</literal>.</para></listitem>
|
A command that would be executed inside the sandbox and passed all the
|
||||||
|
command line arguments. It defaults to <literal>bash</literal>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
</variablelist>
|
</variablelist>
|
||||||
|
|
||||||
@@ -416,47 +432,46 @@ merge:"diff3"
|
|||||||
Running <literal>nix-shell</literal> would then drop you into a shell with
|
Running <literal>nix-shell</literal> would then drop you into a shell with
|
||||||
these libraries and binaries available. You can use this to run
|
these libraries and binaries available. You can use this to run
|
||||||
closed-source applications which expect FHS structure without hassles:
|
closed-source applications which expect FHS structure without hassles:
|
||||||
simply change <literal>runScript</literal> to the application path,
|
simply change <literal>runScript</literal> to the application path, e.g.
|
||||||
e.g. <filename>./bin/start.sh</filename> -- relative paths are supported.
|
<filename>./bin/start.sh</filename> -- relative paths are supported.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
<section xml:id="sec-pkgs-dockerTools">
|
||||||
|
<title>pkgs.dockerTools</title>
|
||||||
|
|
||||||
<section xml:id="sec-pkgs-dockerTools">
|
<para>
|
||||||
<title>pkgs.dockerTools</title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
<varname>pkgs.dockerTools</varname> is a set of functions for creating and
|
<varname>pkgs.dockerTools</varname> is a set of functions for creating and
|
||||||
manipulating Docker images according to the
|
manipulating Docker images according to the
|
||||||
<link xlink:href="https://github.com/moby/moby/blob/master/image/spec/v1.2.md#docker-image-specification-v120">
|
<link xlink:href="https://github.com/moby/moby/blob/master/image/spec/v1.2.md#docker-image-specification-v120">
|
||||||
Docker Image Specification v1.2.0
|
Docker Image Specification v1.2.0 </link>. Docker itself is not used to
|
||||||
</link>. Docker itself is not used to perform any of the operations done by these
|
perform any of the operations done by these functions.
|
||||||
functions.
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
<warning>
|
<warning>
|
||||||
<para>
|
<para>
|
||||||
The <varname>dockerTools</varname> API is unstable and may be subject to
|
The <varname>dockerTools</varname> API is unstable and may be subject to
|
||||||
backwards-incompatible changes in the future.
|
backwards-incompatible changes in the future.
|
||||||
</para>
|
</para>
|
||||||
</warning>
|
</warning>
|
||||||
|
|
||||||
<section xml:id="ssec-pkgs-dockerTools-buildImage">
|
<section xml:id="ssec-pkgs-dockerTools-buildImage">
|
||||||
<title>buildImage</title>
|
<title>buildImage</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
This function is analogous to the <command>docker build</command> command,
|
This function is analogous to the <command>docker build</command> command,
|
||||||
in that can used to build a Docker-compatible repository tarball containing
|
in that can used to build a Docker-compatible repository tarball containing
|
||||||
a single image with one or multiple layers. As such, the result
|
a single image with one or multiple layers. As such, the result is suitable
|
||||||
is suitable for being loaded in Docker with <command>docker load</command>.
|
for being loaded in Docker with <command>docker load</command>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The parameters of <varname>buildImage</varname> with relative example values are
|
The parameters of <varname>buildImage</varname> with relative example
|
||||||
described below:
|
values are described below:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<example xml:id='ex-dockerTools-buildImage'><title>Docker build</title>
|
<example xml:id='ex-dockerTools-buildImage'>
|
||||||
<programlisting>
|
<title>Docker build</title>
|
||||||
|
<programlisting>
|
||||||
buildImage {
|
buildImage {
|
||||||
name = "redis"; <co xml:id='ex-dockerTools-buildImage-1' />
|
name = "redis"; <co xml:id='ex-dockerTools-buildImage-1' />
|
||||||
tag = "latest"; <co xml:id='ex-dockerTools-buildImage-2' />
|
tag = "latest"; <co xml:id='ex-dockerTools-buildImage-2' />
|
||||||
@@ -482,99 +497,92 @@ merge:"diff3"
|
|||||||
</programlisting>
|
</programlisting>
|
||||||
</example>
|
</example>
|
||||||
|
|
||||||
<para>The above example will build a Docker image <literal>redis/latest</literal>
|
<para>
|
||||||
from the given base image. Loading and running this image in Docker results in
|
The above example will build a Docker image <literal>redis/latest</literal>
|
||||||
<literal>redis-server</literal> being started automatically.
|
from the given base image. Loading and running this image in Docker results
|
||||||
|
in <literal>redis-server</literal> being started automatically.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<calloutlist>
|
<calloutlist>
|
||||||
<callout arearefs='ex-dockerTools-buildImage-1'>
|
<callout arearefs='ex-dockerTools-buildImage-1'>
|
||||||
<para>
|
<para>
|
||||||
<varname>name</varname> specifies the name of the resulting image.
|
<varname>name</varname> specifies the name of the resulting image. This
|
||||||
This is the only required argument for <varname>buildImage</varname>.
|
is the only required argument for <varname>buildImage</varname>.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-dockerTools-buildImage-2'>
|
<callout arearefs='ex-dockerTools-buildImage-2'>
|
||||||
<para>
|
<para>
|
||||||
<varname>tag</varname> specifies the tag of the resulting image.
|
<varname>tag</varname> specifies the tag of the resulting image. By
|
||||||
By default it's <literal>latest</literal>.
|
default it's <literal>latest</literal>.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-dockerTools-buildImage-3'>
|
<callout arearefs='ex-dockerTools-buildImage-3'>
|
||||||
<para>
|
<para>
|
||||||
<varname>fromImage</varname> is the repository tarball containing the base image.
|
<varname>fromImage</varname> is the repository tarball containing the
|
||||||
It must be a valid Docker image, such as exported by <command>docker save</command>.
|
base image. It must be a valid Docker image, such as exported by
|
||||||
By default it's <literal>null</literal>, which can be seen as equivalent
|
<command>docker save</command>. By default it's <literal>null</literal>,
|
||||||
to <literal>FROM scratch</literal> of a <filename>Dockerfile</filename>.
|
which can be seen as equivalent to <literal>FROM scratch</literal> of a
|
||||||
|
<filename>Dockerfile</filename>.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-dockerTools-buildImage-4'>
|
<callout arearefs='ex-dockerTools-buildImage-4'>
|
||||||
<para>
|
<para>
|
||||||
<varname>fromImageName</varname> can be used to further specify
|
<varname>fromImageName</varname> can be used to further specify the base
|
||||||
the base image within the repository, in case it contains multiple images.
|
image within the repository, in case it contains multiple images. By
|
||||||
By default it's <literal>null</literal>, in which case
|
default it's <literal>null</literal>, in which case
|
||||||
<varname>buildImage</varname> will peek the first image available
|
<varname>buildImage</varname> will peek the first image available in the
|
||||||
in the repository.
|
repository.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-dockerTools-buildImage-5'>
|
<callout arearefs='ex-dockerTools-buildImage-5'>
|
||||||
<para>
|
<para>
|
||||||
<varname>fromImageTag</varname> can be used to further specify the tag
|
<varname>fromImageTag</varname> can be used to further specify the tag of
|
||||||
of the base image within the repository, in case an image contains multiple tags.
|
the base image within the repository, in case an image contains multiple
|
||||||
By default it's <literal>null</literal>, in which case
|
tags. By default it's <literal>null</literal>, in which case
|
||||||
<varname>buildImage</varname> will peek the first tag available for the base image.
|
<varname>buildImage</varname> will peek the first tag available for the
|
||||||
|
base image.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-dockerTools-buildImage-6'>
|
<callout arearefs='ex-dockerTools-buildImage-6'>
|
||||||
<para>
|
<para>
|
||||||
<varname>contents</varname> is a derivation that will be copied in the new
|
<varname>contents</varname> is a derivation that will be copied in the
|
||||||
layer of the resulting image. This can be similarly seen as
|
new layer of the resulting image. This can be similarly seen as
|
||||||
<command>ADD contents/ /</command> in a <filename>Dockerfile</filename>.
|
<command>ADD contents/ /</command> in a <filename>Dockerfile</filename>.
|
||||||
By default it's <literal>null</literal>.
|
By default it's <literal>null</literal>.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-dockerTools-buildImage-runAsRoot'>
|
<callout arearefs='ex-dockerTools-buildImage-runAsRoot'>
|
||||||
<para>
|
<para>
|
||||||
<varname>runAsRoot</varname> is a bash script that will run as root
|
<varname>runAsRoot</varname> is a bash script that will run as root in an
|
||||||
in an environment that overlays the existing layers of the base image with
|
environment that overlays the existing layers of the base image with the
|
||||||
the new resulting layer, including the previously copied
|
new resulting layer, including the previously copied
|
||||||
<varname>contents</varname> derivation.
|
<varname>contents</varname> derivation. This can be similarly seen as
|
||||||
This can be similarly seen as
|
|
||||||
<command>RUN ...</command> in a <filename>Dockerfile</filename>.
|
<command>RUN ...</command> in a <filename>Dockerfile</filename>.
|
||||||
|
|
||||||
<note>
|
<note>
|
||||||
<para>
|
<para>
|
||||||
Using this parameter requires the <literal>kvm</literal>
|
Using this parameter requires the <literal>kvm</literal> device to be
|
||||||
device to be available.
|
available.
|
||||||
</para>
|
</para>
|
||||||
</note>
|
</note>
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-dockerTools-buildImage-8'>
|
<callout arearefs='ex-dockerTools-buildImage-8'>
|
||||||
<para>
|
<para>
|
||||||
<varname>config</varname> is used to specify the configuration of the
|
<varname>config</varname> is used to specify the configuration of the
|
||||||
containers that will be started off the built image in Docker.
|
containers that will be started off the built image in Docker. The
|
||||||
The available options are listed in the
|
available options are listed in the
|
||||||
<link xlink:href="https://github.com/moby/moby/blob/master/image/spec/v1.2.md#image-json-field-descriptions">
|
<link xlink:href="https://github.com/moby/moby/blob/master/image/spec/v1.2.md#image-json-field-descriptions">
|
||||||
Docker Image Specification v1.2.0
|
Docker Image Specification v1.2.0 </link>.
|
||||||
</link>.
|
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
</calloutlist>
|
</calloutlist>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
After the new layer has been created, its closure
|
After the new layer has been created, its closure (to which
|
||||||
(to which <varname>contents</varname>, <varname>config</varname> and
|
<varname>contents</varname>, <varname>config</varname> and
|
||||||
<varname>runAsRoot</varname> contribute) will be copied in the layer itself.
|
<varname>runAsRoot</varname> contribute) will be copied in the layer
|
||||||
Only new dependencies that are not already in the existing layers will be copied.
|
itself. Only new dependencies that are not already in the existing layers
|
||||||
|
will be copied.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
@@ -584,40 +592,39 @@ merge:"diff3"
|
|||||||
|
|
||||||
<para>
|
<para>
|
||||||
The resulting repository will only list the single image
|
The resulting repository will only list the single image
|
||||||
<varname>image/tag</varname>. In the case of <xref linkend='ex-dockerTools-buildImage'/>
|
<varname>image/tag</varname>. In the case of
|
||||||
it would be <varname>redis/latest</varname>.
|
<xref linkend='ex-dockerTools-buildImage'/> it would be
|
||||||
|
<varname>redis/latest</varname>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
It is possible to inspect the arguments with which an image was built
|
It is possible to inspect the arguments with which an image was built using
|
||||||
using its <varname>buildArgs</varname> attribute.
|
its <varname>buildArgs</varname> attribute.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<note>
|
<note>
|
||||||
<para>
|
<para>
|
||||||
If you see errors similar to <literal>getProtocolByName: does not exist (no such protocol name: tcp)</literal>
|
If you see errors similar to <literal>getProtocolByName: does not exist
|
||||||
you may need to add <literal>pkgs.iana-etc</literal> to <varname>contents</varname>.
|
(no such protocol name: tcp)</literal> you may need to add
|
||||||
|
<literal>pkgs.iana-etc</literal> to <varname>contents</varname>.
|
||||||
</para>
|
</para>
|
||||||
</note>
|
</note>
|
||||||
|
|
||||||
<note>
|
<note>
|
||||||
<para>
|
<para>
|
||||||
If you see errors similar to <literal>Error_Protocol ("certificate has unknown CA",True,UnknownCa)</literal>
|
If you see errors similar to <literal>Error_Protocol ("certificate has
|
||||||
you may need to add <literal>pkgs.cacert</literal> to <varname>contents</varname>.
|
unknown CA",True,UnknownCa)</literal> you may need to add
|
||||||
|
<literal>pkgs.cacert</literal> to <varname>contents</varname>.
|
||||||
</para>
|
</para>
|
||||||
</note>
|
</note>
|
||||||
|
</section>
|
||||||
|
|
||||||
</section>
|
<section xml:id="ssec-pkgs-dockerTools-fetchFromRegistry">
|
||||||
|
|
||||||
<section xml:id="ssec-pkgs-dockerTools-fetchFromRegistry">
|
|
||||||
<title>pullImage</title>
|
<title>pullImage</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
This function is analogous to the <command>docker pull</command> command,
|
This function is analogous to the <command>docker pull</command> command,
|
||||||
in that can be used to fetch a Docker image from a Docker registry.
|
in that can be used to pull a Docker image from a Docker registry.
|
||||||
Currently only registry <literal>v1</literal> is supported.
|
|
||||||
By default <link xlink:href="https://hub.docker.com/">Docker Hub</link>
|
By default <link xlink:href="https://hub.docker.com/">Docker Hub</link>
|
||||||
is used to pull images.
|
is used to pull images.
|
||||||
</para>
|
</para>
|
||||||
@@ -626,16 +633,14 @@ merge:"diff3"
|
|||||||
Its parameters are described in the example below:
|
Its parameters are described in the example below:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<example xml:id='ex-dockerTools-pullImage'><title>Docker pull</title>
|
<example xml:id='ex-dockerTools-pullImage'>
|
||||||
<programlisting>
|
<title>Docker pull</title>
|
||||||
|
<programlisting>
|
||||||
pullImage {
|
pullImage {
|
||||||
imageName = "debian"; <co xml:id='ex-dockerTools-pullImage-1' />
|
imageName = "nixos/nix"; <co xml:id='ex-dockerTools-pullImage-1' />
|
||||||
imageTag = "jessie"; <co xml:id='ex-dockerTools-pullImage-2' />
|
imageDigest = "sha256:20d9485b25ecfd89204e843a962c1bd70e9cc6858d65d7f5fadc340246e2116b"; <co xml:id='ex-dockerTools-pullImage-2' />
|
||||||
imageId = null; <co xml:id='ex-dockerTools-pullImage-3' />
|
finalImageTag = "1.11"; <co xml:id='ex-dockerTools-pullImage-3' />
|
||||||
sha256 = "1bhw5hkz6chrnrih0ymjbmn69hyfriza2lr550xyvpdrnbzr4gk2"; <co xml:id='ex-dockerTools-pullImage-4' />
|
sha256 = "0mqjy3zq2v6rrhizgb9nvhczl87lcfphq9601wcprdika2jz7qh8"; <co xml:id='ex-dockerTools-pullImage-4' />
|
||||||
|
|
||||||
indexUrl = "https://index.docker.io"; <co xml:id='ex-dockerTools-pullImage-5' />
|
|
||||||
registryVersion = "v1";
|
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</example>
|
</example>
|
||||||
@@ -644,65 +649,53 @@ merge:"diff3"
|
|||||||
<callout arearefs='ex-dockerTools-pullImage-1'>
|
<callout arearefs='ex-dockerTools-pullImage-1'>
|
||||||
<para>
|
<para>
|
||||||
<varname>imageName</varname> specifies the name of the image to be downloaded,
|
<varname>imageName</varname> specifies the name of the image to be downloaded,
|
||||||
which can also include the registry namespace (e.g. <literal>library/debian</literal>).
|
which can also include the registry namespace (e.g. <literal>nixos</literal>).
|
||||||
This argument is required.
|
This argument is required.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-dockerTools-pullImage-2'>
|
<callout arearefs='ex-dockerTools-pullImage-2'>
|
||||||
<para>
|
<para>
|
||||||
<varname>imageTag</varname> specifies the tag of the image to be downloaded.
|
<varname>imageDigest</varname> specifies the digest of the image
|
||||||
By default it's <literal>latest</literal>.
|
to be downloaded. Skopeo can be used to get the digest of an image
|
||||||
|
<programlisting>
|
||||||
|
$ skopeo inspect docker://docker.io/nixos/nix:1.11 | jq -r '.Digest'
|
||||||
|
sha256:20d9485b25ecfd89204e843a962c1bd70e9cc6858d65d7f5fadc340246e2116b
|
||||||
|
</programlisting>
|
||||||
|
This argument is required.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-dockerTools-pullImage-3'>
|
<callout arearefs='ex-dockerTools-pullImage-3'>
|
||||||
<para>
|
<para>
|
||||||
<varname>imageId</varname>, if specified this exact image will be fetched, instead
|
<varname>finalImageTag</varname>, if specified, this is the tag of
|
||||||
of <varname>imageName/imageTag</varname>. However, the resulting repository
|
the image to be created. Note it is never used to fetch the image
|
||||||
will still be named <varname>imageName/imageTag</varname>.
|
since we prefer to rely on the immutable digest ID. By default
|
||||||
By default it's <literal>null</literal>.
|
it's <literal>latest</literal>.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-dockerTools-pullImage-4'>
|
<callout arearefs='ex-dockerTools-pullImage-4'>
|
||||||
<para>
|
<para>
|
||||||
<varname>sha256</varname> is the checksum of the whole fetched image.
|
<varname>sha256</varname> is the checksum of the whole fetched image.
|
||||||
This argument is required.
|
This argument is required.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<note>
|
|
||||||
<para>The checksum is computed on the unpacked directory, not on the final tarball.</para>
|
|
||||||
</note>
|
|
||||||
|
|
||||||
</callout>
|
|
||||||
|
|
||||||
<callout arearefs='ex-dockerTools-pullImage-5'>
|
|
||||||
<para>
|
|
||||||
In the above example the default values are shown for the variables
|
|
||||||
<varname>indexUrl</varname> and <varname>registryVersion</varname>.
|
|
||||||
Hence by default the Docker.io registry is used to pull the images.
|
|
||||||
</para>
|
|
||||||
</callout>
|
</callout>
|
||||||
</calloutlist>
|
</calloutlist>
|
||||||
|
</section>
|
||||||
|
|
||||||
</section>
|
<section xml:id="ssec-pkgs-dockerTools-exportImage">
|
||||||
|
|
||||||
<section xml:id="ssec-pkgs-dockerTools-exportImage">
|
|
||||||
<title>exportImage</title>
|
<title>exportImage</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
This function is analogous to the <command>docker export</command> command,
|
This function is analogous to the <command>docker export</command> command,
|
||||||
in that can used to flatten a Docker image that contains multiple layers.
|
in that can used to flatten a Docker image that contains multiple layers.
|
||||||
It is in fact the result of the merge of all the layers of the image.
|
It is in fact the result of the merge of all the layers of the image. As
|
||||||
As such, the result is suitable for being imported in Docker
|
such, the result is suitable for being imported in Docker with
|
||||||
with <command>docker import</command>.
|
<command>docker import</command>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<note>
|
<note>
|
||||||
<para>
|
<para>
|
||||||
Using this function requires the <literal>kvm</literal>
|
Using this function requires the <literal>kvm</literal> device to be
|
||||||
device to be available.
|
available.
|
||||||
</para>
|
</para>
|
||||||
</note>
|
</note>
|
||||||
|
|
||||||
@@ -710,8 +703,9 @@ merge:"diff3"
|
|||||||
The parameters of <varname>exportImage</varname> are the following:
|
The parameters of <varname>exportImage</varname> are the following:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<example xml:id='ex-dockerTools-exportImage'><title>Docker export</title>
|
<example xml:id='ex-dockerTools-exportImage'>
|
||||||
<programlisting>
|
<title>Docker export</title>
|
||||||
|
<programlisting>
|
||||||
exportImage {
|
exportImage {
|
||||||
fromImage = someLayeredImage;
|
fromImage = someLayeredImage;
|
||||||
fromImageName = null;
|
fromImageName = null;
|
||||||
@@ -724,29 +718,31 @@ merge:"diff3"
|
|||||||
|
|
||||||
<para>
|
<para>
|
||||||
The parameters relative to the base image have the same synopsis as
|
The parameters relative to the base image have the same synopsis as
|
||||||
described in <xref linkend='ssec-pkgs-dockerTools-buildImage'/>, except that
|
described in <xref linkend='ssec-pkgs-dockerTools-buildImage'/>, except
|
||||||
<varname>fromImage</varname> is the only required argument in this case.
|
that <varname>fromImage</varname> is the only required argument in this
|
||||||
|
case.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The <varname>name</varname> argument is the name of the derivation output,
|
The <varname>name</varname> argument is the name of the derivation output,
|
||||||
which defaults to <varname>fromImage.name</varname>.
|
which defaults to <varname>fromImage.name</varname>.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="ssec-pkgs-dockerTools-shadowSetup">
|
<section xml:id="ssec-pkgs-dockerTools-shadowSetup">
|
||||||
<title>shadowSetup</title>
|
<title>shadowSetup</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
This constant string is a helper for setting up the base files for managing
|
This constant string is a helper for setting up the base files for managing
|
||||||
users and groups, only if such files don't exist already.
|
users and groups, only if such files don't exist already. It is suitable
|
||||||
It is suitable for being used in a
|
for being used in a <varname>runAsRoot</varname>
|
||||||
<varname>runAsRoot</varname> <xref linkend='ex-dockerTools-buildImage-runAsRoot'/> script for cases like
|
<xref linkend='ex-dockerTools-buildImage-runAsRoot'/> script for cases like
|
||||||
in the example below:
|
in the example below:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<example xml:id='ex-dockerTools-shadowSetup'><title>Shadow base files</title>
|
<example xml:id='ex-dockerTools-shadowSetup'>
|
||||||
<programlisting>
|
<title>Shadow base files</title>
|
||||||
|
<programlisting>
|
||||||
buildImage {
|
buildImage {
|
||||||
name = "shadow-basic";
|
name = "shadow-basic";
|
||||||
|
|
||||||
@@ -767,9 +763,6 @@ merge:"diff3"
|
|||||||
<literal>/etc/login.defs</literal> are necessary for shadow-utils to
|
<literal>/etc/login.defs</literal> are necessary for shadow-utils to
|
||||||
manipulate users and groups.
|
manipulate users and groups.
|
||||||
</para>
|
</para>
|
||||||
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -1,30 +1,34 @@
|
|||||||
<section xmlns="http://docbook.org/ns/docbook"
|
<section xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="sec-beam">
|
xml:id="sec-beam">
|
||||||
|
|
||||||
<title>BEAM Languages (Erlang, Elixir & LFE)</title>
|
<title>BEAM Languages (Erlang, Elixir & LFE)</title>
|
||||||
|
|
||||||
<section xml:id="beam-introduction">
|
<section xml:id="beam-introduction">
|
||||||
<title>Introduction</title>
|
<title>Introduction</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
In this document and related Nix expressions, we use the term,
|
In this document and related Nix expressions, we use the term,
|
||||||
<emphasis>BEAM</emphasis>, to describe the environment. BEAM is the name
|
<emphasis>BEAM</emphasis>, to describe the environment. BEAM is the name of
|
||||||
of the Erlang Virtual Machine and, as far as we're concerned, from a
|
the Erlang Virtual Machine and, as far as we're concerned, from a packaging
|
||||||
packaging perspective, all languages that run on the BEAM are
|
perspective, all languages that run on the BEAM are interchangeable. That
|
||||||
interchangeable. That which varies, like the build system, is transparent
|
which varies, like the build system, is transparent to users of any given
|
||||||
to users of any given BEAM package, so we make no distinction.
|
BEAM package, so we make no distinction.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="beam-structure">
|
<section xml:id="beam-structure">
|
||||||
<title>Structure</title>
|
<title>Structure</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
All BEAM-related expressions are available via the top-level
|
All BEAM-related expressions are available via the top-level
|
||||||
<literal>beam</literal> attribute, which includes:
|
<literal>beam</literal> attribute, which includes:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<literal>interpreters</literal>: a set of compilers running on the
|
<literal>interpreters</literal>: a set of compilers running on the BEAM,
|
||||||
BEAM, including multiple Erlang/OTP versions
|
including multiple Erlang/OTP versions
|
||||||
(<literal>beam.interpreters.erlangR19</literal>, etc), Elixir
|
(<literal>beam.interpreters.erlangR19</literal>, etc), Elixir
|
||||||
(<literal>beam.interpreters.elixir</literal>) and LFE
|
(<literal>beam.interpreters.elixir</literal>) and LFE
|
||||||
(<literal>beam.interpreters.lfe</literal>).
|
(<literal>beam.interpreters.lfe</literal>).
|
||||||
@@ -32,12 +36,13 @@
|
|||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<literal>packages</literal>: a set of package sets, each compiled with
|
<literal>packages</literal>: a set of package sets, each compiled with a
|
||||||
a specific Erlang/OTP version, e.g.
|
specific Erlang/OTP version, e.g.
|
||||||
<literal>beam.packages.erlangR19</literal>.
|
<literal>beam.packages.erlangR19</literal>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The default Erlang compiler, defined by
|
The default Erlang compiler, defined by
|
||||||
<literal>beam.interpreters.erlang</literal>, is aliased as
|
<literal>beam.interpreters.erlang</literal>, is aliased as
|
||||||
@@ -45,19 +50,22 @@
|
|||||||
<literal>beam.packages.erlang</literal> and aliased at the top level as
|
<literal>beam.packages.erlang</literal> and aliased at the top level as
|
||||||
<literal>beamPackages</literal>.
|
<literal>beamPackages</literal>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
To create a package set built with a custom Erlang version, use the
|
To create a package set built with a custom Erlang version, use the lambda,
|
||||||
lambda, <literal>beam.packagesWith</literal>, which accepts an Erlang/OTP
|
<literal>beam.packagesWith</literal>, which accepts an Erlang/OTP derivation
|
||||||
derivation and produces a package set similar to
|
and produces a package set similar to
|
||||||
<literal>beam.packages.erlang</literal>.
|
<literal>beam.packages.erlang</literal>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Many Erlang/OTP distributions available in
|
Many Erlang/OTP distributions available in
|
||||||
<literal>beam.interpreters</literal> have versions with ODBC and/or Java
|
<literal>beam.interpreters</literal> have versions with ODBC and/or Java
|
||||||
enabled. For example, there's
|
enabled. For example, there's
|
||||||
<literal>beam.interpreters.erlangR19_odbc_javac</literal>, which
|
<literal>beam.interpreters.erlangR19_odbc_javac</literal>, which corresponds
|
||||||
corresponds to <literal>beam.interpreters.erlangR19</literal>.
|
to <literal>beam.interpreters.erlangR19</literal>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para xml:id="erlang-call-package">
|
<para xml:id="erlang-call-package">
|
||||||
We also provide the lambda,
|
We also provide the lambda,
|
||||||
<literal>beam.packages.erlang.callPackage</literal>, which simplifies
|
<literal>beam.packages.erlang.callPackage</literal>, which simplifies
|
||||||
@@ -65,10 +73,13 @@
|
|||||||
<literal>beam.packages.erlang</literal> into the top-level context.
|
<literal>beam.packages.erlang</literal> into the top-level context.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="build-tools">
|
<section xml:id="build-tools">
|
||||||
<title>Build Tools</title>
|
<title>Build Tools</title>
|
||||||
|
|
||||||
<section xml:id="build-tools-rebar3">
|
<section xml:id="build-tools-rebar3">
|
||||||
<title>Rebar3</title>
|
<title>Rebar3</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
By default, Rebar3 wants to manage its own dependencies. This is perfectly
|
By default, Rebar3 wants to manage its own dependencies. This is perfectly
|
||||||
acceptable in the normal, non-Nix setup, but in the Nix world, it is not.
|
acceptable in the normal, non-Nix setup, but in the Nix world, it is not.
|
||||||
@@ -84,17 +95,20 @@
|
|||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<literal>rebar3-open</literal>: the normal, unmodified Rebar3. It
|
<literal>rebar3-open</literal>: the normal, unmodified Rebar3. It should
|
||||||
should work exactly as would any other version of Rebar3. Any Erlang
|
work exactly as would any other version of Rebar3. Any Erlang package
|
||||||
package should rely on <literal>rebar3</literal> instead. See <xref
|
should rely on <literal>rebar3</literal> instead. See
|
||||||
|
<xref
|
||||||
linkend="rebar3-packages"/>.
|
linkend="rebar3-packages"/>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="build-tools-other">
|
<section xml:id="build-tools-other">
|
||||||
<title>Mix & Erlang.mk</title>
|
<title>Mix & Erlang.mk</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Both Mix and Erlang.mk work exactly as expected. There is a bootstrap
|
Both Mix and Erlang.mk work exactly as expected. There is a bootstrap
|
||||||
process that needs to be run for both, however, which is supported by the
|
process that needs to be run for both, however, which is supported by the
|
||||||
@@ -102,23 +116,22 @@
|
|||||||
derivations, respectively.
|
derivations, respectively.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="how-to-install-beam-packages">
|
<section xml:id="how-to-install-beam-packages">
|
||||||
<title>How to Install BEAM Packages</title>
|
<title>How to Install BEAM Packages</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
BEAM packages are not registered at the top level, simply because they are
|
BEAM packages are not registered at the top level, simply because they are
|
||||||
not relevant to the vast majority of Nix users. They are installable using
|
not relevant to the vast majority of Nix users. They are installable using
|
||||||
the <literal>beam.packages.erlang</literal> attribute set (aliased as
|
the <literal>beam.packages.erlang</literal> attribute set (aliased as
|
||||||
<literal>beamPackages</literal>), which points to packages built by the
|
<literal>beamPackages</literal>), which points to packages built by the
|
||||||
default Erlang/OTP version in Nixpkgs, as defined by
|
default Erlang/OTP version in Nixpkgs, as defined by
|
||||||
<literal>beam.interpreters.erlang</literal>.
|
<literal>beam.interpreters.erlang</literal>. To list the available packages
|
||||||
|
in <literal>beamPackages</literal>, use the following command:
|
||||||
To list the available packages in
|
|
||||||
<literal>beamPackages</literal>, use the following command:
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
$ nix-env -f "<nixpkgs>" -qaP -A beamPackages
|
$ nix-env -f "<nixpkgs>" -qaP -A beamPackages
|
||||||
beamPackages.esqlite esqlite-0.2.1
|
beamPackages.esqlite esqlite-0.2.1
|
||||||
beamPackages.goldrush goldrush-0.1.7
|
beamPackages.goldrush goldrush-0.1.7
|
||||||
@@ -128,34 +141,43 @@ beamPackages.lager lager-3.0.2
|
|||||||
beamPackages.meck meck-0.8.3
|
beamPackages.meck meck-0.8.3
|
||||||
beamPackages.rebar3-pc pc-1.1.0
|
beamPackages.rebar3-pc pc-1.1.0
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
To install any of those packages into your profile, refer to them by their
|
To install any of those packages into your profile, refer to them by their
|
||||||
attribute path (first column):
|
attribute path (first column):
|
||||||
</para>
|
</para>
|
||||||
<programlisting>
|
|
||||||
|
<programlisting>
|
||||||
$ nix-env -f "<nixpkgs>" -iA beamPackages.ibrowse
|
$ nix-env -f "<nixpkgs>" -iA beamPackages.ibrowse
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The attribute path of any BEAM package corresponds to the name of that
|
The attribute path of any BEAM package corresponds to the name of that
|
||||||
particular package in <link xlink:href="https://hex.pm">Hex</link> or its
|
particular package in <link xlink:href="https://hex.pm">Hex</link> or its
|
||||||
OTP Application/Release name.
|
OTP Application/Release name.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
<section xml:id="packaging-beam-applications">
|
|
||||||
|
<section xml:id="packaging-beam-applications">
|
||||||
<title>Packaging BEAM Applications</title>
|
<title>Packaging BEAM Applications</title>
|
||||||
|
|
||||||
<section xml:id="packaging-erlang-applications">
|
<section xml:id="packaging-erlang-applications">
|
||||||
<title>Erlang Applications</title>
|
<title>Erlang Applications</title>
|
||||||
|
|
||||||
<section xml:id="rebar3-packages">
|
<section xml:id="rebar3-packages">
|
||||||
<title>Rebar3 Packages</title>
|
<title>Rebar3 Packages</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The Nix function, <literal>buildRebar3</literal>, defined in
|
The Nix function, <literal>buildRebar3</literal>, defined in
|
||||||
<literal>beam.packages.erlang.buildRebar3</literal> and aliased at the
|
<literal>beam.packages.erlang.buildRebar3</literal> and aliased at the top
|
||||||
top level, can be used to build a derivation that understands how to
|
level, can be used to build a derivation that understands how to build a
|
||||||
build a Rebar3 project. For example, we can build <link
|
Rebar3 project. For example, we can build
|
||||||
xlink:href="https://github.com/erlang-nix/hex2nix">hex2nix</link> as
|
<link
|
||||||
follows:
|
xlink:href="https://github.com/erlang-nix/hex2nix">hex2nix</link>
|
||||||
|
as follows:
|
||||||
</para>
|
</para>
|
||||||
<programlisting>
|
|
||||||
|
<programlisting>
|
||||||
{ stdenv, fetchFromGitHub, buildRebar3, ibrowse, jsx, erlware_commons }:
|
{ stdenv, fetchFromGitHub, buildRebar3, ibrowse, jsx, erlware_commons }:
|
||||||
|
|
||||||
buildRebar3 rec {
|
buildRebar3 rec {
|
||||||
@@ -172,33 +194,40 @@ $ nix-env -f "<nixpkgs>" -iA beamPackages.ibrowse
|
|||||||
beamDeps = [ ibrowse jsx erlware_commons ];
|
beamDeps = [ ibrowse jsx erlware_commons ];
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Such derivations are callable with
|
Such derivations are callable with
|
||||||
<literal>beam.packages.erlang.callPackage</literal> (see <xref
|
<literal>beam.packages.erlang.callPackage</literal> (see
|
||||||
linkend="erlang-call-package"/>). To call this package using the normal
|
<xref
|
||||||
<literal>callPackage</literal>, refer to dependency packages via
|
linkend="erlang-call-package"/>). To call this package using
|
||||||
<literal>beamPackages</literal>, e.g.
|
the normal <literal>callPackage</literal>, refer to dependency packages
|
||||||
|
via <literal>beamPackages</literal>, e.g.
|
||||||
<literal>beamPackages.ibrowse</literal>.
|
<literal>beamPackages.ibrowse</literal>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Notably, <literal>buildRebar3</literal> includes
|
Notably, <literal>buildRebar3</literal> includes
|
||||||
<literal>beamDeps</literal>, while
|
<literal>beamDeps</literal>, while <literal>stdenv.mkDerivation</literal>
|
||||||
<literal>stdenv.mkDerivation</literal> does not. BEAM dependencies added
|
does not. BEAM dependencies added there will be correctly handled by the
|
||||||
there will be correctly handled by the system.
|
system.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
If a package needs to compile native code via Rebar3's port compilation
|
If a package needs to compile native code via Rebar3's port compilation
|
||||||
mechanism, add <literal>compilePort = true;</literal> to the derivation.
|
mechanism, add <literal>compilePort = true;</literal> to the derivation.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="erlang-mk-packages">
|
<section xml:id="erlang-mk-packages">
|
||||||
<title>Erlang.mk Packages</title>
|
<title>Erlang.mk Packages</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Erlang.mk functions similarly to Rebar3, except we use
|
Erlang.mk functions similarly to Rebar3, except we use
|
||||||
<literal>buildErlangMk</literal> instead of
|
<literal>buildErlangMk</literal> instead of
|
||||||
<literal>buildRebar3</literal>.
|
<literal>buildRebar3</literal>.
|
||||||
</para>
|
</para>
|
||||||
<programlisting>
|
|
||||||
|
<programlisting>
|
||||||
{ buildErlangMk, fetchHex, cowlib, ranch }:
|
{ buildErlangMk, fetchHex, cowlib, ranch }:
|
||||||
|
|
||||||
buildErlangMk {
|
buildErlangMk {
|
||||||
@@ -223,13 +252,16 @@ $ nix-env -f "<nixpkgs>" -iA beamPackages.ibrowse
|
|||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="mix-packages">
|
<section xml:id="mix-packages">
|
||||||
<title>Mix Packages</title>
|
<title>Mix Packages</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Mix functions similarly to Rebar3, except we use
|
Mix functions similarly to Rebar3, except we use
|
||||||
<literal>buildMix</literal> instead of <literal>buildRebar3</literal>.
|
<literal>buildMix</literal> instead of <literal>buildRebar3</literal>.
|
||||||
</para>
|
</para>
|
||||||
<programlisting>
|
|
||||||
|
<programlisting>
|
||||||
{ buildMix, fetchHex, plug, absinthe }:
|
{ buildMix, fetchHex, plug, absinthe }:
|
||||||
|
|
||||||
buildMix {
|
buildMix {
|
||||||
@@ -253,10 +285,12 @@ $ nix-env -f "<nixpkgs>" -iA beamPackages.ibrowse
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Alternatively, we can use <literal>buildHex</literal> as a shortcut:
|
Alternatively, we can use <literal>buildHex</literal> as a shortcut:
|
||||||
</para>
|
</para>
|
||||||
<programlisting>
|
|
||||||
|
<programlisting>
|
||||||
{ buildHex, buildMix, plug, absinthe }:
|
{ buildHex, buildMix, plug, absinthe }:
|
||||||
|
|
||||||
buildHex {
|
buildHex {
|
||||||
@@ -280,19 +314,23 @@ $ nix-env -f "<nixpkgs>" -iA beamPackages.ibrowse
|
|||||||
</programlisting>
|
</programlisting>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
<section xml:id="how-to-develop">
|
|
||||||
|
<section xml:id="how-to-develop">
|
||||||
<title>How to Develop</title>
|
<title>How to Develop</title>
|
||||||
|
|
||||||
<section xml:id="accessing-an-environment">
|
<section xml:id="accessing-an-environment">
|
||||||
<title>Accessing an Environment</title>
|
<title>Accessing an Environment</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Often, we simply want to access a valid environment that contains a
|
Often, we simply want to access a valid environment that contains a
|
||||||
specific package and its dependencies. We can accomplish that with the
|
specific package and its dependencies. We can accomplish that with the
|
||||||
<literal>env</literal> attribute of a derivation. For example, let's say
|
<literal>env</literal> attribute of a derivation. For example, let's say we
|
||||||
we want to access an Erlang REPL with <literal>ibrowse</literal> loaded
|
want to access an Erlang REPL with <literal>ibrowse</literal> loaded up. We
|
||||||
up. We could do the following:
|
could do the following:
|
||||||
</para>
|
</para>
|
||||||
<programlisting>
|
|
||||||
|
<programlisting>
|
||||||
$ nix-shell -A beamPackages.ibrowse.env --run "erl"
|
$ nix-shell -A beamPackages.ibrowse.env --run "erl"
|
||||||
Erlang/OTP 18 [erts-7.0] [source] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false]
|
Erlang/OTP 18 [erts-7.0] [source] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false]
|
||||||
|
|
||||||
@@ -333,22 +371,25 @@ $ nix-env -f "<nixpkgs>" -iA beamPackages.ibrowse
|
|||||||
ok
|
ok
|
||||||
2>
|
2>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Notice the <literal>-A beamPackages.ibrowse.env</literal>. That is the key
|
Notice the <literal>-A beamPackages.ibrowse.env</literal>. That is the key
|
||||||
to this functionality.
|
to this functionality.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="creating-a-shell">
|
<section xml:id="creating-a-shell">
|
||||||
<title>Creating a Shell</title>
|
<title>Creating a Shell</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Getting access to an environment often isn't enough to do real
|
Getting access to an environment often isn't enough to do real development.
|
||||||
development. Usually, we need to create a <literal>shell.nix</literal>
|
Usually, we need to create a <literal>shell.nix</literal> file and do our
|
||||||
file and do our development inside of the environment specified therein.
|
development inside of the environment specified therein. This file looks a
|
||||||
This file looks a lot like the packaging described above, except that
|
lot like the packaging described above, except that <literal>src</literal>
|
||||||
<literal>src</literal> points to the project root and we call the package
|
points to the project root and we call the package directly.
|
||||||
directly.
|
|
||||||
</para>
|
</para>
|
||||||
<programlisting>
|
|
||||||
|
<programlisting>
|
||||||
{ pkgs ? import "<nixpkgs"> {} }:
|
{ pkgs ? import "<nixpkgs"> {} }:
|
||||||
|
|
||||||
with pkgs;
|
with pkgs;
|
||||||
@@ -368,13 +409,16 @@ in
|
|||||||
|
|
||||||
drv
|
drv
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<section xml:id="building-in-a-shell">
|
<section xml:id="building-in-a-shell">
|
||||||
<title>Building in a Shell (for Mix Projects)</title>
|
<title>Building in a Shell (for Mix Projects)</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
We can leverage the support of the derivation, irrespective of the build
|
We can leverage the support of the derivation, irrespective of the build
|
||||||
derivation, by calling the commands themselves.
|
derivation, by calling the commands themselves.
|
||||||
</para>
|
</para>
|
||||||
<programlisting>
|
|
||||||
|
<programlisting>
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# Variables
|
# Variables
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
@@ -431,44 +475,54 @@ analyze: build plt
|
|||||||
$(NIX_SHELL) --run "mix dialyzer --no-compile"
|
$(NIX_SHELL) --run "mix dialyzer --no-compile"
|
||||||
|
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Using a <literal>shell.nix</literal> as described (see <xref
|
Using a <literal>shell.nix</literal> as described (see
|
||||||
|
<xref
|
||||||
linkend="creating-a-shell"/>) should just work. Aside from
|
linkend="creating-a-shell"/>) should just work. Aside from
|
||||||
<literal>test</literal>, <literal>plt</literal>, and
|
<literal>test</literal>, <literal>plt</literal>, and
|
||||||
<literal>analyze</literal>, the Make targets work just fine for all of the
|
<literal>analyze</literal>, the Make targets work just fine for all of the
|
||||||
build derivations.
|
build derivations.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
<section xml:id="generating-packages-from-hex-with-hex2nix">
|
|
||||||
|
<section xml:id="generating-packages-from-hex-with-hex2nix">
|
||||||
<title>Generating Packages from Hex with <literal>hex2nix</literal></title>
|
<title>Generating Packages from Hex with <literal>hex2nix</literal></title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Updating the <link xlink:href="https://hex.pm">Hex</link> package set
|
Updating the <link xlink:href="https://hex.pm">Hex</link> package set
|
||||||
requires <link
|
requires
|
||||||
xlink:href="https://github.com/erlang-nix/hex2nix">hex2nix</link>. Given the
|
<link
|
||||||
path to the Erlang modules (usually
|
xlink:href="https://github.com/erlang-nix/hex2nix">hex2nix</link>.
|
||||||
|
Given the path to the Erlang modules (usually
|
||||||
<literal>pkgs/development/erlang-modules</literal>), it will dump a file
|
<literal>pkgs/development/erlang-modules</literal>), it will dump a file
|
||||||
called <literal>hex-packages.nix</literal>, containing all the packages that
|
called <literal>hex-packages.nix</literal>, containing all the packages that
|
||||||
use a recognized build system in <link
|
use a recognized build system in
|
||||||
xlink:href="https://hex.pm">Hex</link>. It can't be determined, however,
|
<link
|
||||||
whether every package is buildable.
|
xlink:href="https://hex.pm">Hex</link>. It can't be determined,
|
||||||
|
however, whether every package is buildable.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
To make life easier for our users, try to build every <link
|
To make life easier for our users, try to build every
|
||||||
xlink:href="https://hex.pm">Hex</link> package and remove those that fail.
|
<link
|
||||||
To do that, simply run the following command in the root of your
|
xlink:href="https://hex.pm">Hex</link> package and remove those
|
||||||
|
that fail. To do that, simply run the following command in the root of your
|
||||||
<literal>nixpkgs</literal> repository:
|
<literal>nixpkgs</literal> repository:
|
||||||
</para>
|
</para>
|
||||||
<programlisting>
|
|
||||||
|
<programlisting>
|
||||||
$ nix-build -A beamPackages
|
$ nix-build -A beamPackages
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
That will attempt to build every package in
|
That will attempt to build every package in <literal>beamPackages</literal>.
|
||||||
<literal>beamPackages</literal>. Then manually remove those that fail.
|
Then manually remove those that fail. Hopefully, someone will improve
|
||||||
Hopefully, someone will improve <link
|
<link
|
||||||
xlink:href="https://github.com/erlang-nix/hex2nix">hex2nix</link> in the
|
xlink:href="https://github.com/erlang-nix/hex2nix">hex2nix</link>
|
||||||
future to automate the process.
|
in the future to automate the process.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -1,40 +1,37 @@
|
|||||||
<section xmlns="http://docbook.org/ns/docbook"
|
<section xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="sec-bower">
|
xml:id="sec-bower">
|
||||||
|
<title>Bower</title>
|
||||||
|
|
||||||
<title>Bower</title>
|
<para>
|
||||||
|
<link xlink:href="http://bower.io">Bower</link> is a package manager for web
|
||||||
|
site front-end components. Bower packages (comprising of build artefacts and
|
||||||
|
sometimes sources) are stored in <command>git</command> repositories,
|
||||||
|
typically on Github. The package registry is run by the Bower team with
|
||||||
|
package metadata coming from the <filename>bower.json</filename> file within
|
||||||
|
each package.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
<link xlink:href="http://bower.io">Bower</link> is a package manager
|
The end result of running Bower is a <filename>bower_components</filename>
|
||||||
for web site front-end components. Bower packages (comprising of
|
directory which can be included in the web app's build process.
|
||||||
build artefacts and sometimes sources) are stored in
|
</para>
|
||||||
<command>git</command> repositories, typically on Github. The
|
|
||||||
package registry is run by the Bower team with package metadata
|
|
||||||
coming from the <filename>bower.json</filename> file within each
|
|
||||||
package.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The end result of running Bower is a
|
|
||||||
<filename>bower_components</filename> directory which can be included
|
|
||||||
in the web app's build process.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
Bower can be run interactively, by installing
|
Bower can be run interactively, by installing
|
||||||
<varname>nodePackages.bower</varname>. More interestingly, the Bower
|
<varname>nodePackages.bower</varname>. More interestingly, the Bower
|
||||||
components can be declared in a Nix derivation, with the help of
|
components can be declared in a Nix derivation, with the help of
|
||||||
<varname>nodePackages.bower2nix</varname>.
|
<varname>nodePackages.bower2nix</varname>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<section xml:id="ssec-bower2nix-usage">
|
<section xml:id="ssec-bower2nix-usage">
|
||||||
<title><command>bower2nix</command> usage</title>
|
<title><command>bower2nix</command> usage</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Suppose you have a <filename>bower.json</filename> with the following contents:
|
Suppose you have a <filename>bower.json</filename> with the following
|
||||||
|
contents:
|
||||||
|
<example xml:id="ex-bowerJson">
|
||||||
<example xml:id="ex-bowerJson"><title><filename>bower.json</filename></title>
|
<title><filename>bower.json</filename></title>
|
||||||
<programlisting language="json">
|
<programlisting language="json">
|
||||||
<![CDATA[{
|
<![CDATA[{
|
||||||
"name": "my-web-app",
|
"name": "my-web-app",
|
||||||
@@ -44,14 +41,12 @@
|
|||||||
}
|
}
|
||||||
}]]>
|
}]]>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</example>
|
</example>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
<para>
|
|
||||||
Running <command>bower2nix</command> will produce something like the
|
Running <command>bower2nix</command> will produce something like the
|
||||||
following output:
|
following output:
|
||||||
|
|
||||||
<programlisting language="nix">
|
<programlisting language="nix">
|
||||||
<![CDATA[{ fetchbower, buildEnv }:
|
<![CDATA[{ fetchbower, buildEnv }:
|
||||||
buildEnv { name = "bower-env"; ignoreCollisions = true; paths = [
|
buildEnv { name = "bower-env"; ignoreCollisions = true; paths = [
|
||||||
@@ -60,31 +55,31 @@ buildEnv { name = "bower-env"; ignoreCollisions = true; paths = [
|
|||||||
(fetchbower "jquery" "2.2.2" "1.9.1 - 2" "10sp5h98sqwk90y4k6hbdviwqzvzwqf47r3r51pakch5ii2y7js1")
|
(fetchbower "jquery" "2.2.2" "1.9.1 - 2" "10sp5h98sqwk90y4k6hbdviwqzvzwqf47r3r51pakch5ii2y7js1")
|
||||||
]; }]]>
|
]; }]]>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
<para>
|
|
||||||
Using the <command>bower2nix</command> command line arguments, the
|
|
||||||
output can be redirected to a file. A name like
|
|
||||||
<filename>bower-packages.nix</filename> would be fine.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
The resulting derivation is a union of all the downloaded Bower
|
|
||||||
packages (and their dependencies). To use it, they still need to be
|
|
||||||
linked together by Bower, which is where
|
|
||||||
<varname>buildBowerComponents</varname> is useful.
|
|
||||||
</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section xml:id="ssec-build-bower-components"><title><varname>buildBowerComponents</varname> function</title>
|
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The function is implemented in <link xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/bower-modules/generic/default.nix">
|
Using the <command>bower2nix</command> command line arguments, the output
|
||||||
|
can be redirected to a file. A name like
|
||||||
|
<filename>bower-packages.nix</filename> would be fine.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The resulting derivation is a union of all the downloaded Bower packages
|
||||||
|
(and their dependencies). To use it, they still need to be linked together
|
||||||
|
by Bower, which is where <varname>buildBowerComponents</varname> is useful.
|
||||||
|
</para>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section xml:id="ssec-build-bower-components">
|
||||||
|
<title><varname>buildBowerComponents</varname> function</title>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The function is implemented in
|
||||||
|
<link xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/bower-modules/generic/default.nix">
|
||||||
<filename>pkgs/development/bower-modules/generic/default.nix</filename></link>.
|
<filename>pkgs/development/bower-modules/generic/default.nix</filename></link>.
|
||||||
Example usage:
|
Example usage:
|
||||||
|
<example xml:id="ex-buildBowerComponents">
|
||||||
<example xml:id="ex-buildBowerComponents"><title>buildBowerComponents</title>
|
<title>buildBowerComponents</title>
|
||||||
<programlisting language="nix">
|
<programlisting language="nix">
|
||||||
bowerComponents = buildBowerComponents {
|
bowerComponents = buildBowerComponents {
|
||||||
name = "my-web-app";
|
name = "my-web-app";
|
||||||
@@ -92,42 +87,42 @@ bowerComponents = buildBowerComponents {
|
|||||||
src = myWebApp; <co xml:id="ex-buildBowerComponents-2" />
|
src = myWebApp; <co xml:id="ex-buildBowerComponents-2" />
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</example>
|
</example>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
In <xref linkend="ex-buildBowerComponents" />, the following arguments
|
In <xref linkend="ex-buildBowerComponents" />, the following arguments are
|
||||||
are of special significance to the function:
|
of special significance to the function:
|
||||||
|
<calloutlist>
|
||||||
<calloutlist>
|
|
||||||
<callout arearefs="ex-buildBowerComponents-1">
|
<callout arearefs="ex-buildBowerComponents-1">
|
||||||
<para>
|
<para>
|
||||||
<varname>generated</varname> specifies the file which was created by <command>bower2nix</command>.
|
<varname>generated</varname> specifies the file which was created by
|
||||||
|
<command>bower2nix</command>.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs="ex-buildBowerComponents-2">
|
<callout arearefs="ex-buildBowerComponents-2">
|
||||||
<para>
|
<para>
|
||||||
<varname>src</varname> is your project's sources. It needs to
|
<varname>src</varname> is your project's sources. It needs to contain a
|
||||||
contain a <filename>bower.json</filename> file.
|
<filename>bower.json</filename> file.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
</calloutlist>
|
</calloutlist>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
<varname>buildBowerComponents</varname> will run Bower to link
|
<varname>buildBowerComponents</varname> will run Bower to link together the
|
||||||
together the output of <command>bower2nix</command>, resulting in a
|
output of <command>bower2nix</command>, resulting in a
|
||||||
<filename>bower_components</filename> directory which can be used.
|
<filename>bower_components</filename> directory which can be used.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Here is an example of a web frontend build process using
|
Here is an example of a web frontend build process using
|
||||||
<command>gulp</command>. You might use <command>grunt</command>, or
|
<command>gulp</command>. You might use <command>grunt</command>, or anything
|
||||||
anything else.
|
else.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<example xml:id="ex-bowerGulpFile"><title>Example build script (<filename>gulpfile.js</filename>)</title>
|
<example xml:id="ex-bowerGulpFile">
|
||||||
|
<title>Example build script (<filename>gulpfile.js</filename>)</title>
|
||||||
<programlisting language="javascript">
|
<programlisting language="javascript">
|
||||||
<![CDATA[var gulp = require('gulp');
|
<![CDATA[var gulp = require('gulp');
|
||||||
|
|
||||||
@@ -142,9 +137,9 @@ gulp.task('build', [], function () {
|
|||||||
.pipe(gulp.dest("./gulpdist/"));
|
.pipe(gulp.dest("./gulpdist/"));
|
||||||
});]]>
|
});]]>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</example>
|
</example>
|
||||||
|
|
||||||
<example xml:id="ex-buildBowerComponentsDefaultNix">
|
<example xml:id="ex-buildBowerComponentsDefaultNix">
|
||||||
<title>Full example — <filename>default.nix</filename></title>
|
<title>Full example — <filename>default.nix</filename></title>
|
||||||
<programlisting language="nix">
|
<programlisting language="nix">
|
||||||
{ myWebApp ? { outPath = ./.; name = "myWebApp"; }
|
{ myWebApp ? { outPath = ./.; name = "myWebApp"; }
|
||||||
@@ -172,59 +167,51 @@ pkgs.stdenv.mkDerivation {
|
|||||||
installPhase = "mv gulpdist $out";
|
installPhase = "mv gulpdist $out";
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</example>
|
</example>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
A few notes about <xref linkend="ex-buildBowerComponentsDefaultNix" />:
|
A few notes about <xref linkend="ex-buildBowerComponentsDefaultNix" />:
|
||||||
|
<calloutlist>
|
||||||
<calloutlist>
|
|
||||||
<callout arearefs="ex-buildBowerComponentsDefault-1">
|
<callout arearefs="ex-buildBowerComponentsDefault-1">
|
||||||
<para>
|
<para>
|
||||||
The result of <varname>buildBowerComponents</varname> is an
|
The result of <varname>buildBowerComponents</varname> is an input to the
|
||||||
input to the frontend build.
|
frontend build.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs="ex-buildBowerComponentsDefault-2">
|
<callout arearefs="ex-buildBowerComponentsDefault-2">
|
||||||
<para>
|
<para>
|
||||||
Whether to symlink or copy the
|
Whether to symlink or copy the <filename>bower_components</filename>
|
||||||
<filename>bower_components</filename> directory depends on the
|
directory depends on the build tool in use. In this case a copy is used
|
||||||
build tool in use. In this case a copy is used to avoid
|
to avoid <command>gulp</command> silliness with permissions.
|
||||||
<command>gulp</command> silliness with permissions.
|
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs="ex-buildBowerComponentsDefault-3">
|
<callout arearefs="ex-buildBowerComponentsDefault-3">
|
||||||
<para>
|
<para>
|
||||||
<command>gulp</command> requires <varname>HOME</varname> to
|
<command>gulp</command> requires <varname>HOME</varname> to refer to a
|
||||||
refer to a writeable directory.
|
writeable directory.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs="ex-buildBowerComponentsDefault-4">
|
<callout arearefs="ex-buildBowerComponentsDefault-4">
|
||||||
<para>
|
<para>
|
||||||
The actual build command. Other tools could be used.
|
The actual build command. Other tools could be used.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
</calloutlist>
|
</calloutlist>
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="ssec-bower2nix-troubleshooting">
|
<section xml:id="ssec-bower2nix-troubleshooting">
|
||||||
<title>Troubleshooting</title>
|
<title>Troubleshooting</title>
|
||||||
|
|
||||||
<variablelist>
|
<variablelist>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>
|
<term><literal>ENOCACHE</literal> errors from
|
||||||
<literal>ENOCACHE</literal> errors from
|
|
||||||
<varname>buildBowerComponents</varname>
|
<varname>buildBowerComponents</varname>
|
||||||
</term>
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
This means that Bower was looking for a package version which
|
This means that Bower was looking for a package version which doesn't
|
||||||
doesn't exist in the generated
|
exist in the generated <filename>bower-packages.nix</filename>.
|
||||||
<filename>bower-packages.nix</filename>.
|
|
||||||
</para>
|
</para>
|
||||||
<para>
|
<para>
|
||||||
If <filename>bower.json</filename> has been updated, then run
|
If <filename>bower.json</filename> has been updated, then run
|
||||||
@@ -232,13 +219,11 @@ A few notes about <xref linkend="ex-buildBowerComponentsDefaultNix" />:
|
|||||||
</para>
|
</para>
|
||||||
<para>
|
<para>
|
||||||
It could also be a bug in <command>bower2nix</command> or
|
It could also be a bug in <command>bower2nix</command> or
|
||||||
<command>fetchbower</command>. If possible, try reformulating
|
<command>fetchbower</command>. If possible, try reformulating the version
|
||||||
the version specification in <filename>bower.json</filename>.
|
specification in <filename>bower.json</filename>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
</variablelist>
|
</variablelist>
|
||||||
|
</section>
|
||||||
</section>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -1,36 +1,38 @@
|
|||||||
<section xmlns="http://docbook.org/ns/docbook"
|
<section xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="sec-language-coq">
|
xml:id="sec-language-coq">
|
||||||
|
<title>Coq</title>
|
||||||
|
|
||||||
<title>Coq</title>
|
|
||||||
<para>
|
<para>
|
||||||
Coq libraries should be installed in
|
Coq libraries should be installed in
|
||||||
<literal>$(out)/lib/coq/${coq.coq-version}/user-contrib/</literal>.
|
<literal>$(out)/lib/coq/${coq.coq-version}/user-contrib/</literal>. Such
|
||||||
Such directories are automatically added to the
|
directories are automatically added to the <literal>$COQPATH</literal>
|
||||||
<literal>$COQPATH</literal> environment variable by the hook defined
|
environment variable by the hook defined in the Coq derivation.
|
||||||
in the Coq derivation.
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Some libraries require OCaml and sometimes also Camlp5 or findlib.
|
Some libraries require OCaml and sometimes also Camlp5 or findlib. The exact
|
||||||
The exact versions that were used to build Coq are saved in the
|
versions that were used to build Coq are saved in the
|
||||||
<literal>coq.ocaml</literal> and <literal>coq.camlp5</literal>
|
<literal>coq.ocaml</literal> and <literal>coq.camlp5</literal> and
|
||||||
and <literal>coq.findlib</literal> attributes.
|
<literal>coq.findlib</literal> attributes.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Coq libraries may be compatible with some specific versions of Coq only.
|
Coq libraries may be compatible with some specific versions of Coq only. The
|
||||||
The <literal>compatibleCoqVersions</literal> attribute is used to
|
<literal>compatibleCoqVersions</literal> attribute is used to precisely
|
||||||
precisely select those versions of Coq that are compatible with this
|
select those versions of Coq that are compatible with this derivation.
|
||||||
derivation.
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Here is a simple package example. It is a pure Coq library, thus it
|
Here is a simple package example. It is a pure Coq library, thus it depends
|
||||||
depends on Coq. It builds on the Mathematical Components library, thus it
|
on Coq. It builds on the Mathematical Components library, thus it also takes
|
||||||
also takes <literal>mathcomp</literal> as <literal>buildInputs</literal>.
|
<literal>mathcomp</literal> as <literal>buildInputs</literal>. Its
|
||||||
Its <literal>Makefile</literal> has been generated using
|
<literal>Makefile</literal> has been generated using
|
||||||
<literal>coq_makefile</literal> so we only have to
|
<literal>coq_makefile</literal> so we only have to set the
|
||||||
set the <literal>$COQLIB</literal> variable at install time.
|
<literal>$COQLIB</literal> variable at install time.
|
||||||
</para>
|
</para>
|
||||||
<programlisting>
|
|
||||||
|
<programlisting>
|
||||||
{ stdenv, fetchFromGitHub, coq, mathcomp }:
|
{ stdenv, fetchFromGitHub, coq, mathcomp }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
<section xmlns="http://docbook.org/ns/docbook"
|
<section xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="sec-language-go">
|
xml:id="sec-language-go">
|
||||||
|
<title>Go</title>
|
||||||
|
|
||||||
<title>Go</title>
|
<para>
|
||||||
|
The function <varname>buildGoPackage</varname> builds standard Go programs.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>The function <varname>buildGoPackage</varname> builds
|
<example xml:id='ex-buildGoPackage'>
|
||||||
standard Go programs.
|
<title>buildGoPackage</title>
|
||||||
</para>
|
|
||||||
|
|
||||||
<example xml:id='ex-buildGoPackage'><title>buildGoPackage</title>
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
deis = buildGoPackage rec {
|
deis = buildGoPackage rec {
|
||||||
name = "deis-${version}";
|
name = "deis-${version}";
|
||||||
@@ -29,55 +29,56 @@ deis = buildGoPackage rec {
|
|||||||
buildFlags = "--tags release"; <co xml:id='ex-buildGoPackage-4' />
|
buildFlags = "--tags release"; <co xml:id='ex-buildGoPackage-4' />
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</example>
|
</example>
|
||||||
|
|
||||||
<para><xref linkend='ex-buildGoPackage'/> is an example expression using buildGoPackage,
|
|
||||||
the following arguments are of special significance to the function:
|
|
||||||
|
|
||||||
<calloutlist>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
<xref linkend='ex-buildGoPackage'/> is an example expression using
|
||||||
|
buildGoPackage, the following arguments are of special significance to the
|
||||||
|
function:
|
||||||
|
<calloutlist>
|
||||||
<callout arearefs='ex-buildGoPackage-1'>
|
<callout arearefs='ex-buildGoPackage-1'>
|
||||||
<para>
|
<para>
|
||||||
<varname>goPackagePath</varname> specifies the package's canonical Go import path.
|
<varname>goPackagePath</varname> specifies the package's canonical Go
|
||||||
|
import path.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-buildGoPackage-2'>
|
<callout arearefs='ex-buildGoPackage-2'>
|
||||||
<para>
|
<para>
|
||||||
<varname>subPackages</varname> limits the builder from building child packages that
|
<varname>subPackages</varname> limits the builder from building child
|
||||||
have not been listed. If <varname>subPackages</varname> is not specified, all child
|
packages that have not been listed. If <varname>subPackages</varname> is
|
||||||
packages will be built.
|
not specified, all child packages will be built.
|
||||||
</para>
|
</para>
|
||||||
<para>
|
<para>
|
||||||
In this example only <literal>github.com/deis/deis/client</literal> will be built.
|
In this example only <literal>github.com/deis/deis/client</literal> will
|
||||||
|
be built.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-buildGoPackage-3'>
|
<callout arearefs='ex-buildGoPackage-3'>
|
||||||
<para>
|
<para>
|
||||||
<varname>goDeps</varname> is where the Go dependencies of a Go program are listed
|
<varname>goDeps</varname> is where the Go dependencies of a Go program are
|
||||||
as a list of package source identified by Go import path.
|
listed as a list of package source identified by Go import path. It could
|
||||||
It could be imported as a separate <varname>deps.nix</varname> file for
|
be imported as a separate <varname>deps.nix</varname> file for
|
||||||
readability. The dependency data structure is described below.
|
readability. The dependency data structure is described below.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-buildGoPackage-4'>
|
<callout arearefs='ex-buildGoPackage-4'>
|
||||||
<para>
|
<para>
|
||||||
<varname>buildFlags</varname> is a list of flags passed to the go build command.
|
<varname>buildFlags</varname> is a list of flags passed to the go build
|
||||||
|
command.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
</calloutlist>
|
||||||
|
</para>
|
||||||
|
|
||||||
</calloutlist>
|
<para>
|
||||||
|
The <varname>goDeps</varname> attribute can be imported from a separate
|
||||||
|
<varname>nix</varname> file that defines which Go libraries are needed and
|
||||||
|
should be included in <varname>GOPATH</varname> for
|
||||||
|
<varname>buildPhase</varname>.
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<example xml:id='ex-goDeps'>
|
||||||
|
<title>deps.nix</title>
|
||||||
<para>The <varname>goDeps</varname> attribute can be imported from a separate
|
|
||||||
<varname>nix</varname> file that defines which Go libraries are needed and should
|
|
||||||
be included in <varname>GOPATH</varname> for <varname>buildPhase</varname>.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<example xml:id='ex-goDeps'><title>deps.nix</title>
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
[ <co xml:id='ex-goDeps-1' />
|
[ <co xml:id='ex-goDeps-1' />
|
||||||
{
|
{
|
||||||
@@ -100,67 +101,60 @@ the following arguments are of special significance to the function:
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</example>
|
</example>
|
||||||
|
|
||||||
<para>
|
|
||||||
|
|
||||||
<calloutlist>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
<calloutlist>
|
||||||
<callout arearefs='ex-goDeps-1'>
|
<callout arearefs='ex-goDeps-1'>
|
||||||
<para>
|
<para>
|
||||||
<varname>goDeps</varname> is a list of Go dependencies.
|
<varname>goDeps</varname> is a list of Go dependencies.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-goDeps-2'>
|
<callout arearefs='ex-goDeps-2'>
|
||||||
<para>
|
<para>
|
||||||
<varname>goPackagePath</varname> specifies Go package import path.
|
<varname>goPackagePath</varname> specifies Go package import path.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='ex-goDeps-3'>
|
<callout arearefs='ex-goDeps-3'>
|
||||||
<para>
|
<para>
|
||||||
<varname>fetch type</varname> that needs to be used to get package source. If <varname>git</varname>
|
<varname>fetch type</varname> that needs to be used to get package source.
|
||||||
is used there should be <varname>url</varname>, <varname>rev</varname> and <varname>sha256</varname>
|
If <varname>git</varname> is used there should be <varname>url</varname>,
|
||||||
defined next to it.
|
<varname>rev</varname> and <varname>sha256</varname> defined next to it.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
</calloutlist>
|
||||||
|
</para>
|
||||||
|
|
||||||
</calloutlist>
|
<para>
|
||||||
|
To extract dependency information from a Go package in automated way use
|
||||||
|
<link xlink:href="https://github.com/kamilchm/go2nix">go2nix</link>. It can
|
||||||
|
produce complete derivation and <varname>goDeps</varname> file for Go
|
||||||
|
programs.
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
|
<varname>buildGoPackage</varname> produces
|
||||||
<para>To extract dependency information from a Go package in automated way use <link xlink:href="https://github.com/kamilchm/go2nix">go2nix</link>.
|
<xref linkend='chap-multiple-output' xrefstyle="select: title" /> where
|
||||||
It can produce complete derivation and <varname>goDeps</varname> file for Go programs.</para>
|
<varname>bin</varname> includes program binaries. You can test build a Go
|
||||||
|
binary as follows:
|
||||||
<para>
|
<screen>
|
||||||
<varname>buildGoPackage</varname> produces <xref linkend='chap-multiple-output' xrefstyle="select: title" />
|
|
||||||
where <varname>bin</varname> includes program binaries. You can test build a Go binary as follows:
|
|
||||||
|
|
||||||
<screen>
|
|
||||||
$ nix-build -A deis.bin
|
$ nix-build -A deis.bin
|
||||||
</screen>
|
</screen>
|
||||||
|
|
||||||
or build all outputs with:
|
or build all outputs with:
|
||||||
|
<screen>
|
||||||
<screen>
|
|
||||||
$ nix-build -A deis.all
|
$ nix-build -A deis.all
|
||||||
</screen>
|
</screen>
|
||||||
|
<varname>bin</varname> output will be installed by default with
|
||||||
|
<varname>nix-env -i</varname> or <varname>systemPackages</varname>.
|
||||||
|
</para>
|
||||||
|
|
||||||
<varname>bin</varname> output will be installed by default with <varname>nix-env -i</varname>
|
<para>
|
||||||
or <varname>systemPackages</varname>.
|
You may use Go packages installed into the active Nix profiles by adding the
|
||||||
|
following to your ~/.bashrc:
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
You may use Go packages installed into the active Nix profiles by adding
|
|
||||||
the following to your ~/.bashrc:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
for p in $NIX_PROFILES; do
|
for p in $NIX_PROFILES; do
|
||||||
GOPATH="$p/share/go:$GOPATH"
|
GOPATH="$p/share/go:$GOPATH"
|
||||||
done
|
done
|
||||||
</screen>
|
</screen>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -1,36 +1,31 @@
|
|||||||
<chapter xmlns="http://docbook.org/ns/docbook"
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
xml:id="chap-language-support">
|
xml:id="chap-language-support">
|
||||||
|
<title>Support for specific programming languages and frameworks</title>
|
||||||
<title>Support for specific programming languages and frameworks</title>
|
<para>
|
||||||
|
The <link linkend="chap-stdenv">standard build environment</link> makes it
|
||||||
<para>The <link linkend="chap-stdenv">standard build
|
easy to build typical Autotools-based packages with very little code. Any
|
||||||
environment</link> makes it easy to build typical Autotools-based
|
other kind of package can be accomodated by overriding the appropriate phases
|
||||||
packages with very little code. Any other kind of package can be
|
of <literal>stdenv</literal>. However, there are specialised functions in
|
||||||
accomodated by overriding the appropriate phases of
|
Nixpkgs to easily build packages for other programming languages, such as
|
||||||
<literal>stdenv</literal>. However, there are specialised functions
|
Perl or Haskell. These are described in this chapter.
|
||||||
in Nixpkgs to easily build packages for other programming languages,
|
</para>
|
||||||
such as Perl or Haskell. These are described in this chapter.</para>
|
<xi:include href="beam.xml" />
|
||||||
|
<xi:include href="bower.xml" />
|
||||||
|
<xi:include href="coq.xml" />
|
||||||
<xi:include href="beam.xml" />
|
<xi:include href="go.xml" />
|
||||||
<xi:include href="bower.xml" />
|
<xi:include href="haskell.section.xml" />
|
||||||
<xi:include href="coq.xml" />
|
<xi:include href="idris.section.xml" />
|
||||||
<xi:include href="go.xml" />
|
<xi:include href="java.xml" />
|
||||||
<xi:include href="haskell.section.xml" />
|
<xi:include href="lua.xml" />
|
||||||
<xi:include href="idris.section.xml" />
|
<xi:include href="node.section.xml" />
|
||||||
<xi:include href="java.xml" />
|
<xi:include href="perl.xml" />
|
||||||
<xi:include href="lua.xml" />
|
<xi:include href="python.section.xml" />
|
||||||
<xi:include href="node.section.xml" />
|
<xi:include href="qt.xml" />
|
||||||
<xi:include href="perl.xml" />
|
<xi:include href="r.section.xml" />
|
||||||
<xi:include href="python.section.xml" />
|
<xi:include href="ruby.xml" />
|
||||||
<xi:include href="qt.xml" />
|
<xi:include href="rust.section.xml" />
|
||||||
<xi:include href="r.section.xml" />
|
<xi:include href="texlive.xml" />
|
||||||
<xi:include href="ruby.xml" />
|
<xi:include href="vim.section.xml" />
|
||||||
<xi:include href="rust.section.xml" />
|
<xi:include href="emscripten.section.xml" />
|
||||||
<xi:include href="texlive.xml" />
|
|
||||||
<xi:include href="vim.section.xml" />
|
|
||||||
<xi:include href="emscripten.section.xml" />
|
|
||||||
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
<section xmlns="http://docbook.org/ns/docbook"
|
<section xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="sec-language-java">
|
xml:id="sec-language-java">
|
||||||
|
<title>Java</title>
|
||||||
|
|
||||||
<title>Java</title>
|
<para>
|
||||||
|
Ant-based Java packages are typically built from source as follows:
|
||||||
<para>Ant-based Java packages are typically built from source as follows:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "...";
|
name = "...";
|
||||||
@@ -16,33 +15,33 @@ stdenv.mkDerivation {
|
|||||||
buildPhase = "ant";
|
buildPhase = "ant";
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Note that <varname>jdk</varname> is an alias for the OpenJDK.
|
||||||
|
</para>
|
||||||
|
|
||||||
Note that <varname>jdk</varname> is an alias for the OpenJDK.</para>
|
<para>
|
||||||
|
JAR files that are intended to be used by other packages should be installed
|
||||||
<para>JAR files that are intended to be used by other packages should
|
in <filename>$out/share/java</filename>. The OpenJDK has a stdenv setup hook
|
||||||
be installed in <filename>$out/share/java</filename>. The OpenJDK has
|
that adds any JARs in the <filename>share/java</filename> directories of the
|
||||||
a stdenv setup hook that adds any JARs in the
|
build inputs to the <envar>CLASSPATH</envar> environment variable. For
|
||||||
<filename>share/java</filename> directories of the build inputs to the
|
instance, if the package <literal>libfoo</literal> installs a JAR named
|
||||||
<envar>CLASSPATH</envar> environment variable. For instance, if the
|
<filename>foo.jar</filename> in its <filename>share/java</filename>
|
||||||
package <literal>libfoo</literal> installs a JAR named
|
directory, and another package declares the attribute
|
||||||
<filename>foo.jar</filename> in its <filename>share/java</filename>
|
|
||||||
directory, and another package declares the attribute
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
buildInputs = [ jdk libfoo ];
|
buildInputs = [ jdk libfoo ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
then <envar>CLASSPATH</envar> will be set to
|
||||||
|
<filename>/nix/store/...-libfoo/share/java/foo.jar</filename>.
|
||||||
|
</para>
|
||||||
|
|
||||||
then <envar>CLASSPATH</envar> will be set to
|
<para>
|
||||||
<filename>/nix/store/...-libfoo/share/java/foo.jar</filename>.</para>
|
Private JARs should be installed in a location like
|
||||||
|
<filename>$out/share/<replaceable>package-name</replaceable></filename>.
|
||||||
<para>Private JARs
|
</para>
|
||||||
should be installed in a location like
|
|
||||||
<filename>$out/share/<replaceable>package-name</replaceable></filename>.</para>
|
|
||||||
|
|
||||||
<para>If your Java package provides a program, you need to generate a
|
|
||||||
wrapper script to run it using the OpenJRE. You can use
|
|
||||||
<literal>makeWrapper</literal> for this:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
If your Java package provides a program, you need to generate a wrapper
|
||||||
|
script to run it using the OpenJRE. You can use
|
||||||
|
<literal>makeWrapper</literal> for this:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
buildInputs = [ makeWrapper ];
|
buildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
@@ -53,23 +52,20 @@ installPhase =
|
|||||||
--add-flags "-cp $out/share/java/foo.jar org.foo.Main"
|
--add-flags "-cp $out/share/java/foo.jar org.foo.Main"
|
||||||
'';
|
'';
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Note the use of <literal>jre</literal>, which is the part of the OpenJDK
|
||||||
|
package that contains the Java Runtime Environment. By using
|
||||||
|
<literal>${jre}/bin/java</literal> instead of
|
||||||
|
<literal>${jdk}/bin/java</literal>, you prevent your package from depending
|
||||||
|
on the JDK at runtime.
|
||||||
|
</para>
|
||||||
|
|
||||||
Note the use of <literal>jre</literal>, which is the part of the
|
<para>
|
||||||
OpenJDK package that contains the Java Runtime Environment. By using
|
It is possible to use a different Java compiler than <command>javac</command>
|
||||||
<literal>${jre}/bin/java</literal> instead of
|
from the OpenJDK. For instance, to use the GNU Java Compiler:
|
||||||
<literal>${jdk}/bin/java</literal>, you prevent your package from
|
|
||||||
depending on the JDK at runtime.</para>
|
|
||||||
|
|
||||||
<para>It is possible to use a different Java compiler than
|
|
||||||
<command>javac</command> from the OpenJDK. For instance, to use the
|
|
||||||
GNU Java Compiler:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
buildInputs = [ gcj ant ];
|
buildInputs = [ gcj ant ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Here, Ant will automatically use <command>gij</command> (the GNU Java
|
||||||
Here, Ant will automatically use <command>gij</command> (the GNU Java
|
Runtime) instead of the OpenJRE.
|
||||||
Runtime) instead of the OpenJRE.</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|||||||
@@ -1,24 +1,22 @@
|
|||||||
<section xmlns="http://docbook.org/ns/docbook"
|
<section xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="sec-language-lua">
|
xml:id="sec-language-lua">
|
||||||
|
<title>Lua</title>
|
||||||
|
|
||||||
<title>Lua</title>
|
<para>
|
||||||
|
Lua packages are built by the <varname>buildLuaPackage</varname> function.
|
||||||
<para>
|
This function is implemented in
|
||||||
Lua packages are built by the <varname>buildLuaPackage</varname> function. This function is
|
<link xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/lua-modules/generic/default.nix">
|
||||||
implemented
|
|
||||||
in <link xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/lua-modules/generic/default.nix">
|
|
||||||
<filename>pkgs/development/lua-modules/generic/default.nix</filename></link>
|
<filename>pkgs/development/lua-modules/generic/default.nix</filename></link>
|
||||||
and works similarly to <varname>buildPerlPackage</varname>. (See
|
and works similarly to <varname>buildPerlPackage</varname>. (See
|
||||||
<xref linkend="sec-language-perl"/> for details.)
|
<xref linkend="sec-language-perl"/> for details.)
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Lua packages are defined
|
Lua packages are defined in
|
||||||
in <link xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/lua-packages.nix"><filename>pkgs/top-level/lua-packages.nix</filename></link>.
|
<link xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/lua-packages.nix"><filename>pkgs/top-level/lua-packages.nix</filename></link>.
|
||||||
Most of them are simple. For example:
|
Most of them are simple. For example:
|
||||||
|
<programlisting>
|
||||||
<programlisting>
|
|
||||||
fileSystem = buildLuaPackage {
|
fileSystem = buildLuaPackage {
|
||||||
name = "filesystem-1.6.2";
|
name = "filesystem-1.6.2";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
@@ -32,20 +30,19 @@ fileSystem = buildLuaPackage {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Though, more complicated package should be placed in a seperate file in
|
Though, more complicated package should be placed in a seperate file in
|
||||||
<link
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/lua-modules"><filename>pkgs/development/lua-modules</filename></link>.
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/lua-modules"><filename>pkgs/development/lua-modules</filename></link>.
|
||||||
</para>
|
</para>
|
||||||
<para>
|
|
||||||
Lua packages accept additional parameter <varname>disabled</varname>, which defines
|
|
||||||
the condition of disabling package from luaPackages. For example, if package has
|
|
||||||
<varname>disabled</varname> assigned to <literal>lua.luaversion != "5.1"</literal>,
|
|
||||||
it will not be included in any luaPackages except lua51Packages, making it
|
|
||||||
only be built for lua 5.1.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Lua packages accept additional parameter <varname>disabled</varname>, which
|
||||||
|
defines the condition of disabling package from luaPackages. For example, if
|
||||||
|
package has <varname>disabled</varname> assigned to <literal>lua.luaversion
|
||||||
|
!= "5.1"</literal>, it will not be included in any luaPackages except
|
||||||
|
lua51Packages, making it only be built for lua 5.1.
|
||||||
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|||||||
+107
-110
@@ -1,24 +1,27 @@
|
|||||||
<section xmlns="http://docbook.org/ns/docbook"
|
<section xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="sec-language-perl">
|
xml:id="sec-language-perl">
|
||||||
|
<title>Perl</title>
|
||||||
|
|
||||||
<title>Perl</title>
|
<para>
|
||||||
|
Nixpkgs provides a function <varname>buildPerlPackage</varname>, a generic
|
||||||
|
package builder function for any Perl package that has a standard
|
||||||
|
<varname>Makefile.PL</varname>. It’s implemented in
|
||||||
|
<link
|
||||||
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/perl-modules/generic"><filename>pkgs/development/perl-modules/generic</filename></link>.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>Nixpkgs provides a function <varname>buildPerlPackage</varname>,
|
<para>
|
||||||
a generic package builder function for any Perl package that has a
|
Perl packages from CPAN are defined in
|
||||||
standard <varname>Makefile.PL</varname>. It’s implemented in <link
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/perl-modules/generic"><filename>pkgs/development/perl-modules/generic</filename></link>.</para>
|
|
||||||
|
|
||||||
<para>Perl packages from CPAN are defined in <link
|
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/perl-packages.nix"><filename>pkgs/top-level/perl-packages.nix</filename></link>,
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/perl-packages.nix"><filename>pkgs/top-level/perl-packages.nix</filename></link>,
|
||||||
rather than <filename>pkgs/all-packages.nix</filename>. Most Perl
|
rather than <filename>pkgs/all-packages.nix</filename>. Most Perl packages
|
||||||
packages are so straight-forward to build that they are defined here
|
are so straight-forward to build that they are defined here directly, rather
|
||||||
directly, rather than having a separate function for each package
|
than having a separate function for each package called from
|
||||||
called from <filename>perl-packages.nix</filename>. However, more
|
<filename>perl-packages.nix</filename>. However, more complicated packages
|
||||||
complicated packages should be put in a separate file, typically in
|
should be put in a separate file, typically in
|
||||||
<filename>pkgs/development/perl-modules</filename>. Here is an
|
<filename>pkgs/development/perl-modules</filename>. Here is an example of the
|
||||||
example of the former:
|
former:
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
ClassC3 = buildPerlPackage rec {
|
ClassC3 = buildPerlPackage rec {
|
||||||
name = "Class-C3-0.21";
|
name = "Class-C3-0.21";
|
||||||
@@ -28,74 +31,72 @@ ClassC3 = buildPerlPackage rec {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Note the use of <literal>mirror://cpan/</literal>, and the
|
||||||
Note the use of <literal>mirror://cpan/</literal>, and the
|
<literal>${name}</literal> in the URL definition to ensure that the name
|
||||||
<literal>${name}</literal> in the URL definition to ensure that the
|
attribute is consistent with the source that we’re actually downloading.
|
||||||
name attribute is consistent with the source that we’re actually
|
Perl packages are made available in <filename>all-packages.nix</filename>
|
||||||
downloading. Perl packages are made available in
|
through the variable <varname>perlPackages</varname>. For instance, if you
|
||||||
<filename>all-packages.nix</filename> through the variable
|
have a package that needs <varname>ClassC3</varname>, you would typically
|
||||||
<varname>perlPackages</varname>. For instance, if you have a package
|
write
|
||||||
that needs <varname>ClassC3</varname>, you would typically write
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
foo = import ../path/to/foo.nix {
|
foo = import ../path/to/foo.nix {
|
||||||
inherit stdenv fetchurl ...;
|
inherit stdenv fetchurl ...;
|
||||||
inherit (perlPackages) ClassC3;
|
inherit (perlPackages) ClassC3;
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
in <filename>all-packages.nix</filename>. You can test building a Perl
|
||||||
in <filename>all-packages.nix</filename>. You can test building a
|
package as follows:
|
||||||
Perl package as follows:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-build -A perlPackages.ClassC3
|
$ nix-build -A perlPackages.ClassC3
|
||||||
</screen>
|
</screen>
|
||||||
|
<varname>buildPerlPackage</varname> adds <literal>perl-</literal> to the
|
||||||
<varname>buildPerlPackage</varname> adds <literal>perl-</literal> to
|
start of the name attribute, so the package above is actually called
|
||||||
the start of the name attribute, so the package above is actually
|
<literal>perl-Class-C3-0.21</literal>. So to install it, you can say:
|
||||||
called <literal>perl-Class-C3-0.21</literal>. So to install it, you
|
|
||||||
can say:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-env -i perl-Class-C3
|
$ nix-env -i perl-Class-C3
|
||||||
</screen>
|
</screen>
|
||||||
|
(Of course you can also install using the attribute name: <literal>nix-env -i
|
||||||
|
-A perlPackages.ClassC3</literal>.)
|
||||||
|
</para>
|
||||||
|
|
||||||
(Of course you can also install using the attribute name:
|
<para>
|
||||||
<literal>nix-env -i -A perlPackages.ClassC3</literal>.)</para>
|
So what does <varname>buildPerlPackage</varname> do? It does the following:
|
||||||
|
<orderedlist>
|
||||||
<para>So what does <varname>buildPerlPackage</varname> do? It does
|
<listitem>
|
||||||
the following:
|
<para>
|
||||||
|
In the configure phase, it calls <literal>perl Makefile.PL</literal> to
|
||||||
<orderedlist>
|
generate a Makefile. You can set the variable
|
||||||
|
<varname>makeMakerFlags</varname> to pass flags to
|
||||||
<listitem><para>In the configure phase, it calls <literal>perl
|
<filename>Makefile.PL</filename>
|
||||||
Makefile.PL</literal> to generate a Makefile. You can set the
|
</para>
|
||||||
variable <varname>makeMakerFlags</varname> to pass flags to
|
</listitem>
|
||||||
<filename>Makefile.PL</filename></para></listitem>
|
<listitem>
|
||||||
|
<para>
|
||||||
<listitem><para>It adds the contents of the <envar>PERL5LIB</envar>
|
It adds the contents of the <envar>PERL5LIB</envar> environment variable
|
||||||
environment variable to <literal>#! .../bin/perl</literal> line of
|
to <literal>#! .../bin/perl</literal> line of Perl scripts as
|
||||||
Perl scripts as <literal>-I<replaceable>dir</replaceable></literal>
|
<literal>-I<replaceable>dir</replaceable></literal> flags. This ensures
|
||||||
flags. This ensures that a script can find its
|
that a script can find its dependencies.
|
||||||
dependencies.</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem><para>In the fixup phase, it writes the propagated build
|
<listitem>
|
||||||
inputs (<varname>propagatedBuildInputs</varname>) to the file
|
<para>
|
||||||
|
In the fixup phase, it writes the propagated build inputs
|
||||||
|
(<varname>propagatedBuildInputs</varname>) to the file
|
||||||
<filename>$out/nix-support/propagated-user-env-packages</filename>.
|
<filename>$out/nix-support/propagated-user-env-packages</filename>.
|
||||||
<command>nix-env</command> recursively installs all packages listed
|
<command>nix-env</command> recursively installs all packages listed in
|
||||||
in this file when you install a package that has it. This ensures
|
this file when you install a package that has it. This ensures that a Perl
|
||||||
that a Perl package can find its dependencies.</para></listitem>
|
package can find its dependencies.
|
||||||
|
</para>
|
||||||
</orderedlist>
|
</listitem>
|
||||||
|
</orderedlist>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para><varname>buildPerlPackage</varname> is built on top of
|
|
||||||
<varname>stdenv</varname>, so everything can be customised in the
|
|
||||||
usual way. For instance, the <literal>BerkeleyDB</literal> module has
|
|
||||||
a <varname>preConfigure</varname> hook to generate a configuration
|
|
||||||
file used by <filename>Makefile.PL</filename>:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
<varname>buildPerlPackage</varname> is built on top of
|
||||||
|
<varname>stdenv</varname>, so everything can be customised in the usual way.
|
||||||
|
For instance, the <literal>BerkeleyDB</literal> module has a
|
||||||
|
<varname>preConfigure</varname> hook to generate a configuration file used by
|
||||||
|
<filename>Makefile.PL</filename>:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ buildPerlPackage, fetchurl, db }:
|
{ buildPerlPackage, fetchurl, db }:
|
||||||
|
|
||||||
@@ -113,18 +114,15 @@ buildPerlPackage rec {
|
|||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
|
Dependencies on other Perl packages can be specified in the
|
||||||
<para>Dependencies on other Perl packages can be specified in the
|
<varname>buildInputs</varname> and <varname>propagatedBuildInputs</varname>
|
||||||
<varname>buildInputs</varname> and
|
attributes. If something is exclusively a build-time dependency, use
|
||||||
<varname>propagatedBuildInputs</varname> attributes. If something is
|
<varname>buildInputs</varname>; if it’s (also) a runtime dependency, use
|
||||||
exclusively a build-time dependency, use
|
<varname>propagatedBuildInputs</varname>. For instance, this builds a Perl
|
||||||
<varname>buildInputs</varname>; if it’s (also) a runtime dependency,
|
module that has runtime dependencies on a bunch of other modules:
|
||||||
use <varname>propagatedBuildInputs</varname>. For instance, this
|
|
||||||
builds a Perl module that has runtime dependencies on a bunch of other
|
|
||||||
modules:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
ClassC3Componentised = buildPerlPackage rec {
|
ClassC3Componentised = buildPerlPackage rec {
|
||||||
name = "Class-C3-Componentised-1.0004";
|
name = "Class-C3-Componentised-1.0004";
|
||||||
@@ -137,24 +135,26 @@ ClassC3Componentised = buildPerlPackage rec {
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<section xml:id="ssec-generation-from-CPAN">
|
||||||
|
<title>Generation from CPAN</title>
|
||||||
|
|
||||||
<section xml:id="ssec-generation-from-CPAN"><title>Generation from CPAN</title>
|
<para>
|
||||||
|
Nix expressions for Perl packages can be generated (almost) automatically
|
||||||
<para>Nix expressions for Perl packages can be generated (almost)
|
from CPAN. This is done by the program
|
||||||
automatically from CPAN. This is done by the program
|
<command>nix-generate-from-cpan</command>, which can be installed as
|
||||||
<command>nix-generate-from-cpan</command>, which can be installed
|
follows:
|
||||||
as follows:</para>
|
</para>
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-env -i nix-generate-from-cpan
|
$ nix-env -i nix-generate-from-cpan
|
||||||
</screen>
|
</screen>
|
||||||
|
|
||||||
<para>This program takes a Perl module name, looks it up on CPAN,
|
<para>
|
||||||
fetches and unpacks the corresponding package, and prints a Nix
|
This program takes a Perl module name, looks it up on CPAN, fetches and
|
||||||
expression on standard output. For example:
|
unpacks the corresponding package, and prints a Nix expression on standard
|
||||||
|
output. For example:
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-generate-from-cpan XML::Simple
|
$ nix-generate-from-cpan XML::Simple
|
||||||
XMLSimple = buildPerlPackage rec {
|
XMLSimple = buildPerlPackage rec {
|
||||||
@@ -170,26 +170,23 @@ $ nix-generate-from-cpan XML::Simple
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
</screen>
|
</screen>
|
||||||
|
The output can be pasted into
|
||||||
|
<filename>pkgs/top-level/perl-packages.nix</filename> or wherever else you
|
||||||
|
need it.
|
||||||
|
</para>
|
||||||
|
</section>
|
||||||
|
|
||||||
The output can be pasted into
|
<section xml:id="ssec-perl-cross-compilation">
|
||||||
<filename>pkgs/top-level/perl-packages.nix</filename> or wherever else
|
<title>Cross-compiling modules</title>
|
||||||
you need it.</para>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Nixpkgs has experimental support for cross-compiling Perl modules. In many
|
||||||
|
cases, it will just work out of the box, even for modules with native
|
||||||
|
extensions. Sometimes, however, the Makefile.PL for a module may
|
||||||
|
(indirectly) import a native module. In that case, you will need to make a
|
||||||
|
stub for that module that will satisfy the Makefile.PL and install it into
|
||||||
|
<filename>lib/perl5/site_perl/cross_perl/${perl.version}</filename>. See the
|
||||||
|
<varname>postInstall</varname> for <varname>DBI</varname> for an example.
|
||||||
|
</para>
|
||||||
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="ssec-perl-cross-compilation"><title>Cross-compiling modules</title>
|
|
||||||
|
|
||||||
<para>Nixpkgs has experimental support for cross-compiling Perl
|
|
||||||
modules. In many cases, it will just work out of the box, even for
|
|
||||||
modules with native extensions. Sometimes, however, the Makefile.PL
|
|
||||||
for a module may (indirectly) import a native module. In that case,
|
|
||||||
you will need to make a stub for that module that will satisfy the
|
|
||||||
Makefile.PL and install it into
|
|
||||||
<filename>lib/perl5/site_perl/cross_perl/${perl.version}</filename>.
|
|
||||||
See the <varname>postInstall</varname> for <varname>DBI</varname> for
|
|
||||||
an example.</para>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,58 +1,74 @@
|
|||||||
<section xmlns="http://docbook.org/ns/docbook"
|
<section xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="sec-language-qt">
|
xml:id="sec-language-qt">
|
||||||
|
<title>Qt</title>
|
||||||
|
|
||||||
<title>Qt</title>
|
<para>
|
||||||
|
Qt is a comprehensive desktop and mobile application development toolkit for
|
||||||
|
C++. Legacy support is available for Qt 3 and Qt 4, but all current
|
||||||
|
development uses Qt 5. The Qt 5 packages in Nixpkgs are updated frequently to
|
||||||
|
take advantage of new features, but older versions are typically retained
|
||||||
|
until their support window ends. The most important consideration in
|
||||||
|
packaging Qt-based software is ensuring that each package and all its
|
||||||
|
dependencies use the same version of Qt 5; this consideration motivates most
|
||||||
|
of the tools described below.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>
|
<section xml:id="ssec-qt-libraries">
|
||||||
Qt is a comprehensive desktop and mobile application development toolkit for C++.
|
<title>Packaging Libraries for Nixpkgs</title>
|
||||||
Legacy support is available for Qt 3 and Qt 4, but all current development uses Qt 5.
|
|
||||||
The Qt 5 packages in Nixpkgs are updated frequently to take advantage of new features,
|
|
||||||
but older versions are typically retained until their support window ends.
|
|
||||||
The most important consideration in packaging Qt-based software is ensuring that each package and all its dependencies use the same version of Qt 5;
|
|
||||||
this consideration motivates most of the tools described below.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<section xml:id="ssec-qt-libraries"><title>Packaging Libraries for Nixpkgs</title>
|
<para>
|
||||||
|
Whenever possible, libraries that use Qt 5 should be built with each
|
||||||
|
available version. Packages providing libraries should be added to the
|
||||||
|
top-level function <varname>mkLibsForQt5</varname>, which is used to build a
|
||||||
|
set of libraries for every Qt 5 version. A special
|
||||||
|
<varname>callPackage</varname> function is used in this scope to ensure that
|
||||||
|
the entire dependency tree uses the same Qt 5 version. Import dependencies
|
||||||
|
unqualified, i.e., <literal>qtbase</literal> not
|
||||||
|
<literal>qt5.qtbase</literal>. <emphasis>Do not</emphasis> import a package
|
||||||
|
set such as <literal>qt5</literal> or <literal>libsForQt5</literal>.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Whenever possible, libraries that use Qt 5 should be built with each available version.
|
If a library does not support a particular version of Qt 5, it is best to
|
||||||
Packages providing libraries should be added to the top-level function <varname>mkLibsForQt5</varname>,
|
mark it as broken by setting its <literal>meta.broken</literal> attribute. A
|
||||||
which is used to build a set of libraries for every Qt 5 version.
|
package may be marked broken for certain versions by testing the
|
||||||
A special <varname>callPackage</varname> function is used in this scope to ensure that the entire dependency tree uses the same Qt 5 version.
|
<literal>qtbase.version</literal> attribute, which will always give the
|
||||||
Import dependencies unqualified, i.e., <literal>qtbase</literal> not <literal>qt5.qtbase</literal>.
|
current Qt 5 version.
|
||||||
<emphasis>Do not</emphasis> import a package set such as <literal>qt5</literal> or <literal>libsForQt5</literal>.
|
</para>
|
||||||
</para>
|
</section>
|
||||||
|
|
||||||
<para>
|
<section xml:id="ssec-qt-applications">
|
||||||
If a library does not support a particular version of Qt 5, it is best to mark it as broken by setting its <literal>meta.broken</literal> attribute.
|
<title>Packaging Applications for Nixpkgs</title>
|
||||||
A package may be marked broken for certain versions by testing the <literal>qtbase.version</literal> attribute, which will always give the current Qt 5 version.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Call your application expression using
|
||||||
|
<literal>libsForQt5.callPackage</literal> instead of
|
||||||
|
<literal>callPackage</literal>. Import dependencies unqualified, i.e.,
|
||||||
|
<literal>qtbase</literal> not <literal>qt5.qtbase</literal>. <emphasis>Do
|
||||||
|
not</emphasis> import a package set such as <literal>qt5</literal> or
|
||||||
|
<literal>libsForQt5</literal>.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Qt 5 maintains strict backward compatibility, so it is generally best to
|
||||||
|
build an application package against the latest version using the
|
||||||
|
<varname>libsForQt5</varname> library set. In case a package does not build
|
||||||
|
with the latest Qt version, it is possible to pick a set pinned to a
|
||||||
|
particular version, e.g. <varname>libsForQt55</varname> for Qt 5.5, if that
|
||||||
|
is the latest version the package supports. If a package must be pinned to
|
||||||
|
an older Qt version, be sure to file a bug upstream; because Qt is strictly
|
||||||
|
backwards-compatible, any incompatibility is by definition a bug in the
|
||||||
|
application.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
When testing applications in Nixpkgs, it is a common practice to build the
|
||||||
|
package with <literal>nix-build</literal> and run it using the created
|
||||||
|
symbolic link. This will not work with Qt applications, however, because
|
||||||
|
they have many hard runtime requirements that can only be guaranteed if the
|
||||||
|
package is actually installed. To test a Qt application, install it with
|
||||||
|
<literal>nix-env</literal> or run it inside <literal>nix-shell</literal>.
|
||||||
|
</para>
|
||||||
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="ssec-qt-applications"><title>Packaging Applications for Nixpkgs</title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
Call your application expression using <literal>libsForQt5.callPackage</literal> instead of <literal>callPackage</literal>.
|
|
||||||
Import dependencies unqualified, i.e., <literal>qtbase</literal> not <literal>qt5.qtbase</literal>.
|
|
||||||
<emphasis>Do not</emphasis> import a package set such as <literal>qt5</literal> or <literal>libsForQt5</literal>.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
Qt 5 maintains strict backward compatibility, so it is generally best to build an application package against the latest version using the <varname>libsForQt5</varname> library set.
|
|
||||||
In case a package does not build with the latest Qt version, it is possible to pick a set pinned to a particular version, e.g. <varname>libsForQt55</varname> for Qt 5.5, if that is the latest version the package supports.
|
|
||||||
If a package must be pinned to an older Qt version, be sure to file a bug upstream;
|
|
||||||
because Qt is strictly backwards-compatible, any incompatibility is by definition a bug in the application.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
When testing applications in Nixpkgs, it is a common practice to build the package with <literal>nix-build</literal> and run it using the created symbolic link.
|
|
||||||
This will not work with Qt applications, however, because they have many hard runtime requirements that can only be guaranteed if the package is actually installed.
|
|
||||||
To test a Qt application, install it with <literal>nix-env</literal> or run it inside <literal>nix-shell</literal>.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,17 +1,19 @@
|
|||||||
<section xmlns="http://docbook.org/ns/docbook"
|
<section xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="sec-language-ruby">
|
xml:id="sec-language-ruby">
|
||||||
|
<title>Ruby</title>
|
||||||
|
|
||||||
<title>Ruby</title>
|
<para>
|
||||||
|
There currently is support to bundle applications that are packaged as Ruby
|
||||||
|
gems. The utility "bundix" allows you to write a
|
||||||
|
<filename>Gemfile</filename>, let bundler create a
|
||||||
|
<filename>Gemfile.lock</filename>, and then convert this into a nix
|
||||||
|
expression that contains all Gem dependencies automatically.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>There currently is support to bundle applications that are packaged as
|
<para>
|
||||||
Ruby gems. The utility "bundix" allows you to write a
|
For example, to package sensu, we did:
|
||||||
<filename>Gemfile</filename>, let bundler create a
|
</para>
|
||||||
<filename>Gemfile.lock</filename>, and then convert this into a nix
|
|
||||||
expression that contains all Gem dependencies automatically.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>For example, to package sensu, we did:</para>
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
<![CDATA[$ cd pkgs/servers/monitoring
|
<![CDATA[$ cd pkgs/servers/monitoring
|
||||||
@@ -42,17 +44,18 @@ bundlerEnv rec {
|
|||||||
}]]>
|
}]]>
|
||||||
</screen>
|
</screen>
|
||||||
|
|
||||||
<para>Please check in the <filename>Gemfile</filename>,
|
<para>
|
||||||
<filename>Gemfile.lock</filename> and the
|
Please check in the <filename>Gemfile</filename>,
|
||||||
<filename>gemset.nix</filename> so future updates can be run easily.
|
<filename>Gemfile.lock</filename> and the <filename>gemset.nix</filename> so
|
||||||
</para>
|
future updates can be run easily.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>For tools written in Ruby - i.e. where the desire is to install
|
<para>
|
||||||
a package and then execute e.g. <command>rake</command> at the command
|
For tools written in Ruby - i.e. where the desire is to install a package and
|
||||||
line, there is an alternative builder called <literal>bundlerApp</literal>.
|
then execute e.g. <command>rake</command> at the command line, there is an
|
||||||
Set up the <filename>gemset.nix</filename> the same way, and then, for
|
alternative builder called <literal>bundlerApp</literal>. Set up the
|
||||||
example:
|
<filename>gemset.nix</filename> the same way, and then, for example:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
<![CDATA[{ lib, bundlerApp }:
|
<![CDATA[{ lib, bundlerApp }:
|
||||||
@@ -72,31 +75,31 @@ bundlerApp {
|
|||||||
}]]>
|
}]]>
|
||||||
</screen>
|
</screen>
|
||||||
|
|
||||||
<para>The chief advantage of <literal>bundlerApp</literal> over
|
<para>
|
||||||
<literal>bundlerEnv</literal> is the executables introduced in the
|
The chief advantage of <literal>bundlerApp</literal> over
|
||||||
environment are precisely those selected in the <literal>exes</literal>
|
<literal>bundlerEnv</literal> is the executables introduced in the
|
||||||
list, as opposed to <literal>bundlerEnv</literal> which adds all the
|
environment are precisely those selected in the <literal>exes</literal> list,
|
||||||
executables made available by gems in the gemset, which can mean e.g.
|
as opposed to <literal>bundlerEnv</literal> which adds all the executables
|
||||||
<command>rspec</command> or <command>rake</command> in unpredictable
|
made available by gems in the gemset, which can mean e.g.
|
||||||
versions available from various packages.
|
<command>rspec</command> or <command>rake</command> in unpredictable versions
|
||||||
</para>
|
available from various packages.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>Resulting derivations for both builders also have two helpful
|
<para>
|
||||||
attributes, <literal>env</literal> and <literal>wrappedRuby</literal>.
|
Resulting derivations for both builders also have two helpful attributes,
|
||||||
The first one allows one to quickly drop into
|
<literal>env</literal> and <literal>wrappedRuby</literal>. The first one
|
||||||
<command>nix-shell</command> with the specified environment present.
|
allows one to quickly drop into <command>nix-shell</command> with the
|
||||||
E.g. <command>nix-shell -A sensu.env</command> would give you an
|
specified environment present. E.g. <command>nix-shell -A sensu.env</command>
|
||||||
environment with Ruby preset so it has all the libraries necessary
|
would give you an environment with Ruby preset so it has all the libraries
|
||||||
for <literal>sensu</literal> in its paths. The second one can be
|
necessary for <literal>sensu</literal> in its paths. The second one can be
|
||||||
used to make derivations from custom Ruby scripts which have
|
used to make derivations from custom Ruby scripts which have
|
||||||
<filename>Gemfile</filename>s with their dependencies specified. It is
|
<filename>Gemfile</filename>s with their dependencies specified. It is a
|
||||||
a derivation with <command>ruby</command> wrapped so it can find all
|
derivation with <command>ruby</command> wrapped so it can find all the needed
|
||||||
the needed dependencies. For example, to make a derivation
|
dependencies. For example, to make a derivation <literal>my-script</literal>
|
||||||
<literal>my-script</literal> for a <filename>my-script.rb</filename>
|
for a <filename>my-script.rb</filename> (which should be placed in
|
||||||
(which should be placed in <filename>bin</filename>) you should run
|
<filename>bin</filename>) you should run <command>bundix</command> as
|
||||||
<command>bundix</command> as specified above and then use
|
specified above and then use <literal>bundlerEnv</literal> like this:
|
||||||
<literal>bundlerEnv</literal> like this:
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<![CDATA[let env = bundlerEnv {
|
<![CDATA[let env = bundlerEnv {
|
||||||
@@ -118,5 +121,4 @@ in stdenv.mkDerivation {
|
|||||||
'';
|
'';
|
||||||
}]]>
|
}]]>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -1,27 +1,42 @@
|
|||||||
<section xmlns="http://docbook.org/ns/docbook"
|
<section xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="sec-language-texlive">
|
xml:id="sec-language-texlive">
|
||||||
|
<title>TeX Live</title>
|
||||||
|
|
||||||
<title>TeX Live</title>
|
<para>
|
||||||
|
Since release 15.09 there is a new TeX Live packaging that lives entirely
|
||||||
|
under attribute <varname>texlive</varname>.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<title>User's guide</title>
|
||||||
|
|
||||||
<para>Since release 15.09 there is a new TeX Live packaging that lives entirely under attribute <varname>texlive</varname>.</para>
|
|
||||||
<section><title>User's guide</title>
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>
|
<listitem>
|
||||||
For basic usage just pull <varname>texlive.combined.scheme-basic</varname> for an environment with basic LaTeX support.</para></listitem>
|
<para>
|
||||||
<listitem><para>
|
For basic usage just pull <varname>texlive.combined.scheme-basic</varname>
|
||||||
|
for an environment with basic LaTeX support.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
It typically won't work to use separately installed packages together.
|
It typically won't work to use separately installed packages together.
|
||||||
Instead, you can build a custom set of packages like this:
|
Instead, you can build a custom set of packages like this:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
texlive.combine {
|
texlive.combine {
|
||||||
inherit (texlive) scheme-small collection-langkorean algorithms cm-super;
|
inherit (texlive) scheme-small collection-langkorean algorithms cm-super;
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
There are all the schemes, collections and a few thousand packages, as defined upstream (perhaps with tiny differences).
|
There are all the schemes, collections and a few thousand packages, as
|
||||||
</para></listitem>
|
defined upstream (perhaps with tiny differences).
|
||||||
<listitem><para>
|
</para>
|
||||||
By default you only get executables and files needed during runtime, and a little documentation for the core packages. To change that, you need to add <varname>pkgFilter</varname> function to <varname>combine</varname>.
|
</listitem>
|
||||||
<programlisting>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
By default you only get executables and files needed during runtime, and a
|
||||||
|
little documentation for the core packages. To change that, you need to
|
||||||
|
add <varname>pkgFilter</varname> function to <varname>combine</varname>.
|
||||||
|
<programlisting>
|
||||||
texlive.combine {
|
texlive.combine {
|
||||||
# inherit (texlive) whatever-you-want;
|
# inherit (texlive) whatever-you-want;
|
||||||
pkgFilter = pkg:
|
pkgFilter = pkg:
|
||||||
@@ -30,34 +45,55 @@ texlive.combine {
|
|||||||
# there are also other attributes: version, name
|
# there are also other attributes: version, name
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para></listitem>
|
</para>
|
||||||
<listitem><para>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
You can list packages e.g. by <command>nix-repl</command>.
|
You can list packages e.g. by <command>nix-repl</command>.
|
||||||
<programlisting>
|
<programlisting>
|
||||||
$ nix-repl
|
$ nix-repl
|
||||||
nix-repl> :l <nixpkgs>
|
nix-repl> :l <nixpkgs>
|
||||||
nix-repl> texlive.collection-<TAB>
|
nix-repl> texlive.collection-<TAB>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para></listitem>
|
</para>
|
||||||
<listitem><para>
|
</listitem>
|
||||||
Note that the wrapper assumes that the result has a chance to be useful. For example, the core executables should be present, as well as some core data files. The supported way of ensuring this is by including some scheme, for example <varname>scheme-basic</varname>, into the combination.
|
<listitem>
|
||||||
</para></listitem>
|
<para>
|
||||||
|
Note that the wrapper assumes that the result has a chance to be useful.
|
||||||
|
For example, the core executables should be present, as well as some core
|
||||||
|
data files. The supported way of ensuring this is by including some
|
||||||
|
scheme, for example <varname>scheme-basic</varname>, into the combination.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<title>Known problems</title>
|
||||||
|
|
||||||
<section><title>Known problems</title>
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>
|
<listitem>
|
||||||
Some tools are still missing, e.g. luajittex;</para></listitem>
|
<para>
|
||||||
<listitem><para>
|
Some tools are still missing, e.g. luajittex;
|
||||||
some apps aren't packaged/tested yet (asymptote, biber, etc.);</para></listitem>
|
</para>
|
||||||
<listitem><para>
|
</listitem>
|
||||||
feature/bug: when a package is rejected by <varname>pkgFilter</varname>, its dependencies are still propagated;</para></listitem>
|
<listitem>
|
||||||
<listitem><para>
|
<para>
|
||||||
in case of any bugs or feature requests, file a github issue or better a pull request and /cc @vcunat.</para></listitem>
|
some apps aren't packaged/tested yet (asymptote, biber, etc.);
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
feature/bug: when a package is rejected by <varname>pkgFilter</varname>,
|
||||||
|
its dependencies are still propagated;
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
in case of any bugs or feature requests, file a github issue or better a
|
||||||
|
pull request and /cc @vcunat.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|||||||
+2
-7
@@ -1,14 +1,10 @@
|
|||||||
<book xmlns="http://docbook.org/ns/docbook"
|
<book xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xi="http://www.w3.org/2001/XInclude">
|
xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||||
|
|
||||||
<info>
|
<info>
|
||||||
|
|
||||||
<title>Nixpkgs Contributors Guide</title>
|
<title>Nixpkgs Contributors Guide</title>
|
||||||
|
<subtitle>Version <xi:include href=".version" parse="text" />
|
||||||
<subtitle>Version <xi:include href=".version" parse="text" /></subtitle>
|
</subtitle>
|
||||||
|
|
||||||
</info>
|
</info>
|
||||||
|
|
||||||
<xi:include href="introduction.chapter.xml" />
|
<xi:include href="introduction.chapter.xml" />
|
||||||
<xi:include href="quick-start.xml" />
|
<xi:include href="quick-start.xml" />
|
||||||
<xi:include href="stdenv.xml" />
|
<xi:include href="stdenv.xml" />
|
||||||
@@ -25,5 +21,4 @@
|
|||||||
<xi:include href="submitting-changes.xml" />
|
<xi:include href="submitting-changes.xml" />
|
||||||
<xi:include href="reviewing-contributions.xml" />
|
<xi:include href="reviewing-contributions.xml" />
|
||||||
<xi:include href="contributing.xml" />
|
<xi:include href="contributing.xml" />
|
||||||
|
|
||||||
</book>
|
</book>
|
||||||
|
|||||||
+240
-196
@@ -1,14 +1,12 @@
|
|||||||
<chapter xmlns="http://docbook.org/ns/docbook"
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="chap-meta">
|
xml:id="chap-meta">
|
||||||
|
<title>Meta-attributes</title>
|
||||||
<title>Meta-attributes</title>
|
<para>
|
||||||
|
Nix packages can declare <emphasis>meta-attributes</emphasis> that contain
|
||||||
<para>Nix packages can declare <emphasis>meta-attributes</emphasis>
|
information about a package such as a description, its homepage, its license,
|
||||||
that contain information about a package such as a description, its
|
and so on. For instance, the GNU Hello package has a <varname>meta</varname>
|
||||||
homepage, its license, and so on. For instance, the GNU Hello package
|
declaration like this:
|
||||||
has a <varname>meta</varname> declaration like this:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
meta = {
|
meta = {
|
||||||
description = "A program that produces a familiar, friendly greeting";
|
description = "A program that produces a familiar, friendly greeting";
|
||||||
@@ -22,16 +20,15 @@ meta = {
|
|||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
</para>
|
<para>
|
||||||
|
Meta-attributes are not passed to the builder of the package. Thus, a change
|
||||||
<para>Meta-attributes are not passed to the builder of the package.
|
to a meta-attribute doesn’t trigger a recompilation of the package. The
|
||||||
Thus, a change to a meta-attribute doesn’t trigger a recompilation of
|
value of a meta-attribute must be a string.
|
||||||
the package. The value of a meta-attribute must be a string.</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>The meta-attributes of a package can be queried from the
|
The meta-attributes of a package can be queried from the command-line using
|
||||||
command-line using <command>nix-env</command>:
|
<command>nix-env</command>:
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-env -qa hello --json
|
$ nix-env -qa hello --json
|
||||||
{
|
{
|
||||||
@@ -70,252 +67,299 @@ $ nix-env -qa hello --json
|
|||||||
|
|
||||||
|
|
||||||
</screen>
|
</screen>
|
||||||
|
<command>nix-env</command> knows about the <varname>description</varname>
|
||||||
<command>nix-env</command> knows about the
|
field specifically:
|
||||||
<varname>description</varname> field specifically:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-env -qa hello --description
|
$ nix-env -qa hello --description
|
||||||
hello-2.3 A program that produces a familiar, friendly greeting
|
hello-2.3 A program that produces a familiar, friendly greeting
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
|
<section xml:id="sec-standard-meta-attributes">
|
||||||
|
<title>Standard meta-attributes</title>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
|
It is expected that each meta-attribute is one of the following:
|
||||||
|
</para>
|
||||||
<section xml:id="sec-standard-meta-attributes"><title>Standard
|
|
||||||
meta-attributes</title>
|
|
||||||
|
|
||||||
<para>It is expected that each meta-attribute is one of the following:</para>
|
|
||||||
|
|
||||||
<variablelist>
|
|
||||||
|
|
||||||
|
<variablelist>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>description</varname></term>
|
<term><varname>description</varname>
|
||||||
<listitem><para>A short (one-line) description of the package.
|
</term>
|
||||||
This is shown by <command>nix-env -q --description</command> and
|
<listitem>
|
||||||
also on the Nixpkgs release pages.</para>
|
<para>
|
||||||
|
A short (one-line) description of the package. This is shown by
|
||||||
<para>Don’t include a period at the end. Don’t include newline
|
<command>nix-env -q --description</command> and also on the Nixpkgs
|
||||||
characters. Capitalise the first character. For brevity, don’t
|
release pages.
|
||||||
repeat the name of package — just describe what it does.</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>Wrong: <literal>"libpng is a library that allows you to decode PNG images."</literal></para>
|
Don’t include a period at the end. Don’t include newline characters.
|
||||||
|
Capitalise the first character. For brevity, don’t repeat the name of
|
||||||
<para>Right: <literal>"A library for decoding PNG images"</literal></para>
|
package — just describe what it does.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
Wrong: <literal>"libpng is a library that allows you to decode PNG
|
||||||
|
images."</literal>
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
Right: <literal>"A library for decoding PNG images"</literal>
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>longDescription</varname></term>
|
<term><varname>longDescription</varname>
|
||||||
<listitem><para>An arbitrarily long description of the
|
</term>
|
||||||
package.</para></listitem>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
An arbitrarily long description of the package.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>branch</varname></term>
|
<term><varname>branch</varname>
|
||||||
<listitem><para>Release branch. Used to specify that a package is not
|
</term>
|
||||||
going to receive updates that are not in this branch; for example, Linux
|
<listitem>
|
||||||
kernel 3.0 is supposed to be updated to 3.0.X, not 3.1.</para></listitem>
|
<para>
|
||||||
|
Release branch. Used to specify that a package is not going to receive
|
||||||
|
updates that are not in this branch; for example, Linux kernel 3.0 is
|
||||||
|
supposed to be updated to 3.0.X, not 3.1.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>homepage</varname></term>
|
<term><varname>homepage</varname>
|
||||||
<listitem><para>The package’s homepage. Example:
|
</term>
|
||||||
<literal>http://www.gnu.org/software/hello/manual/</literal></para></listitem>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The package’s homepage. Example:
|
||||||
|
<literal>http://www.gnu.org/software/hello/manual/</literal>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>downloadPage</varname></term>
|
<term><varname>downloadPage</varname>
|
||||||
<listitem><para>The page where a link to the current version can be found. Example:
|
</term>
|
||||||
<literal>http://ftp.gnu.org/gnu/hello/</literal></para></listitem>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The page where a link to the current version can be found. Example:
|
||||||
|
<literal>http://ftp.gnu.org/gnu/hello/</literal>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>license</varname></term>
|
<term><varname>license</varname>
|
||||||
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
The license, or licenses, for the package. One from the attribute set
|
The license, or licenses, for the package. One from the attribute set
|
||||||
defined in <link
|
defined in
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/lib/licenses.nix">
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/lib/licenses.nix">
|
||||||
<filename>nixpkgs/lib/licenses.nix</filename></link>. At this moment
|
<filename>nixpkgs/lib/licenses.nix</filename></link>. At this moment
|
||||||
using both a list of licenses and a single license is valid. If the
|
using both a list of licenses and a single license is valid. If the
|
||||||
license field is in the form of a list representation, then it means
|
license field is in the form of a list representation, then it means that
|
||||||
that parts of the package are licensed differently. Each license
|
parts of the package are licensed differently. Each license should
|
||||||
should preferably be referenced by their attribute. The non-list
|
preferably be referenced by their attribute. The non-list attribute value
|
||||||
attribute value can also be a space delimited string representation of
|
can also be a space delimited string representation of the contained
|
||||||
the contained attribute shortNames or spdxIds. The following are all valid
|
attribute shortNames or spdxIds. The following are all valid examples:
|
||||||
examples:
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>Single license referenced by attribute (preferred)
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Single license referenced by attribute (preferred)
|
||||||
<literal>stdenv.lib.licenses.gpl3</literal>.
|
<literal>stdenv.lib.licenses.gpl3</literal>.
|
||||||
</para></listitem>
|
</para>
|
||||||
<listitem><para>Single license referenced by its attribute shortName (frowned upon)
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Single license referenced by its attribute shortName (frowned upon)
|
||||||
<literal>"gpl3"</literal>.
|
<literal>"gpl3"</literal>.
|
||||||
</para></listitem>
|
</para>
|
||||||
<listitem><para>Single license referenced by its attribute spdxId (frowned upon)
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Single license referenced by its attribute spdxId (frowned upon)
|
||||||
<literal>"GPL-3.0"</literal>.
|
<literal>"GPL-3.0"</literal>.
|
||||||
</para></listitem>
|
</para>
|
||||||
<listitem><para>Multiple licenses referenced by attribute (preferred)
|
</listitem>
|
||||||
<literal>with stdenv.lib.licenses; [ asl20 free ofl ]</literal>.
|
<listitem>
|
||||||
</para></listitem>
|
<para>
|
||||||
<listitem><para>Multiple licenses referenced as a space delimited string of attribute shortNames (frowned upon)
|
Multiple licenses referenced by attribute (preferred) <literal>with
|
||||||
<literal>"asl20 free ofl"</literal>.
|
stdenv.lib.licenses; [ asl20 free ofl ]</literal>.
|
||||||
</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Multiple licenses referenced as a space delimited string of attribute
|
||||||
|
shortNames (frowned upon) <literal>"asl20 free ofl"</literal>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
For details, see <xref linkend='sec-meta-license'/>.
|
For details, see <xref linkend='sec-meta-license'/>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>maintainers</varname></term>
|
<term><varname>maintainers</varname>
|
||||||
<listitem><para>A list of names and e-mail addresses of the
|
</term>
|
||||||
maintainers of this Nix expression. If
|
<listitem>
|
||||||
you would like to be a maintainer of a package, you may want to add
|
<para>
|
||||||
yourself to <link
|
A list of names and e-mail addresses of the maintainers of this Nix
|
||||||
|
expression. If you would like to be a maintainer of a package, you may
|
||||||
|
want to add yourself to
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/maintainers/maintainer-list.nix"><filename>nixpkgs/maintainers/maintainer-list.nix</filename></link>
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/maintainers/maintainer-list.nix"><filename>nixpkgs/maintainers/maintainer-list.nix</filename></link>
|
||||||
and write something like <literal>[ stdenv.lib.maintainers.alice
|
and write something like <literal>[ stdenv.lib.maintainers.alice
|
||||||
stdenv.lib.maintainers.bob ]</literal>.</para></listitem>
|
stdenv.lib.maintainers.bob ]</literal>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>priority</varname></term>
|
<term><varname>priority</varname>
|
||||||
<listitem><para>The <emphasis>priority</emphasis> of the package,
|
</term>
|
||||||
used by <command>nix-env</command> to resolve file name conflicts
|
<listitem>
|
||||||
between packages. See the Nix manual page for
|
<para>
|
||||||
<command>nix-env</command> for details. Example:
|
The <emphasis>priority</emphasis> of the package, used by
|
||||||
<literal>"10"</literal> (a low-priority
|
<command>nix-env</command> to resolve file name conflicts between
|
||||||
package).</para></listitem>
|
packages. See the Nix manual page for <command>nix-env</command> for
|
||||||
|
details. Example: <literal>"10"</literal> (a low-priority package).
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>platforms</varname></term>
|
<term><varname>platforms</varname>
|
||||||
<listitem><para>The list of Nix platform types on which the
|
</term>
|
||||||
package is supported. Hydra builds packages according to the
|
<listitem>
|
||||||
platform specified. If no platform is specified, the package does
|
<para>
|
||||||
not have prebuilt binaries. An example is:
|
The list of Nix platform types on which the package is supported. Hydra
|
||||||
|
builds packages according to the platform specified. If no platform is
|
||||||
|
specified, the package does not have prebuilt binaries. An example is:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
meta.platforms = stdenv.lib.platforms.linux;
|
meta.platforms = stdenv.lib.platforms.linux;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
Attribute Set <varname>stdenv.lib.platforms</varname> defines
|
Attribute Set <varname>stdenv.lib.platforms</varname> defines
|
||||||
<link xlink:href="https://github.com/NixOS/nixpkgs/blob/master/lib/systems/doubles.nix">
|
<link xlink:href="https://github.com/NixOS/nixpkgs/blob/master/lib/systems/doubles.nix">
|
||||||
various common lists</link> of platforms types.</para></listitem>
|
various common lists</link> of platforms types.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>hydraPlatforms</varname></term>
|
<term><varname>hydraPlatforms</varname>
|
||||||
<listitem><para>The list of Nix platform types for which the Hydra
|
</term>
|
||||||
instance at <literal>hydra.nixos.org</literal> will build the
|
<listitem>
|
||||||
package. (Hydra is the Nix-based continuous build system.) It
|
<para>
|
||||||
defaults to the value of <varname>meta.platforms</varname>. Thus,
|
The list of Nix platform types for which the Hydra instance at
|
||||||
the only reason to set <varname>meta.hydraPlatforms</varname> is
|
<literal>hydra.nixos.org</literal> will build the package. (Hydra is the
|
||||||
if you want <literal>hydra.nixos.org</literal> to build the
|
Nix-based continuous build system.) It defaults to the value of
|
||||||
package on a subset of <varname>meta.platforms</varname>, or not
|
<varname>meta.platforms</varname>. Thus, the only reason to set
|
||||||
at all, e.g.
|
<varname>meta.hydraPlatforms</varname> is if you want
|
||||||
|
<literal>hydra.nixos.org</literal> to build the package on a subset of
|
||||||
|
<varname>meta.platforms</varname>, or not at all, e.g.
|
||||||
<programlisting>
|
<programlisting>
|
||||||
meta.platforms = stdenv.lib.platforms.linux;
|
meta.platforms = stdenv.lib.platforms.linux;
|
||||||
meta.hydraPlatforms = [];
|
meta.hydraPlatforms = [];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
</para></listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>broken</varname></term>
|
<term><varname>broken</varname>
|
||||||
<listitem><para>If set to <literal>true</literal>, the package is
|
</term>
|
||||||
marked as “broken”, meaning that it won’t show up in
|
<listitem>
|
||||||
<literal>nix-env -qa</literal>, and cannot be built or installed.
|
<para>
|
||||||
Such packages should be removed from Nixpkgs eventually unless
|
If set to <literal>true</literal>, the package is marked as “broken”,
|
||||||
they are fixed.</para></listitem>
|
meaning that it won’t show up in <literal>nix-env -qa</literal>, and
|
||||||
|
cannot be built or installed. Such packages should be removed from
|
||||||
|
Nixpkgs eventually unless they are fixed.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>updateWalker</varname></term>
|
<term><varname>updateWalker</varname>
|
||||||
<listitem><para>If set to <literal>true</literal>, the package is
|
</term>
|
||||||
tested to be updated correctly by the <literal>update-walker.sh</literal>
|
<listitem>
|
||||||
script without additional settings. Such packages have
|
<para>
|
||||||
<varname>meta.version</varname> set and their homepage (or
|
If set to <literal>true</literal>, the package is tested to be updated
|
||||||
the page specified by <varname>meta.downloadPage</varname>) contains
|
correctly by the <literal>update-walker.sh</literal> script without
|
||||||
a direct link to the package tarball.</para></listitem>
|
additional settings. Such packages have <varname>meta.version</varname>
|
||||||
|
set and their homepage (or the page specified by
|
||||||
|
<varname>meta.downloadPage</varname>) contains a direct link to the
|
||||||
|
package tarball.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
</variablelist>
|
||||||
|
</section>
|
||||||
|
<section xml:id="sec-meta-license">
|
||||||
|
<title>Licenses</title>
|
||||||
|
|
||||||
</variablelist>
|
<para>
|
||||||
|
The <varname>meta.license</varname> attribute should preferrably contain a
|
||||||
|
value from <varname>stdenv.lib.licenses</varname> defined in
|
||||||
</section>
|
<link xlink:href="https://github.com/NixOS/nixpkgs/blob/master/lib/licenses.nix">
|
||||||
|
<filename>nixpkgs/lib/licenses.nix</filename></link>, or in-place license
|
||||||
|
description of the same format if the license is unlikely to be useful in
|
||||||
<section xml:id="sec-meta-license"><title>Licenses</title>
|
another expression.
|
||||||
|
</para>
|
||||||
<para>The <varname>meta.license</varname> attribute should preferrably contain
|
|
||||||
a value from <varname>stdenv.lib.licenses</varname> defined in
|
|
||||||
<link xlink:href="https://github.com/NixOS/nixpkgs/blob/master/lib/licenses.nix">
|
|
||||||
<filename>nixpkgs/lib/licenses.nix</filename></link>,
|
|
||||||
or in-place license description of the same format if the license is
|
|
||||||
unlikely to be useful in another expression.</para>
|
|
||||||
|
|
||||||
<para>Although it's typically better to indicate the specific license,
|
|
||||||
a few generic options are available:
|
|
||||||
|
|
||||||
<variablelist>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Although it's typically better to indicate the specific license, a few
|
||||||
|
generic options are available:
|
||||||
|
<variablelist>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>stdenv.lib.licenses.free</varname>,
|
<term><varname>stdenv.lib.licenses.free</varname>,
|
||||||
<varname>"free"</varname></term>
|
<varname>"free"</varname>
|
||||||
|
</term>
|
||||||
<listitem><para>Catch-all for free software licenses not listed
|
<listitem>
|
||||||
above.</para></listitem>
|
<para>
|
||||||
|
Catch-all for free software licenses not listed above.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>stdenv.lib.licenses.unfreeRedistributable</varname>,
|
<term><varname>stdenv.lib.licenses.unfreeRedistributable</varname>,
|
||||||
<varname>"unfree-redistributable"</varname></term>
|
<varname>"unfree-redistributable"</varname>
|
||||||
|
</term>
|
||||||
<listitem><para>Unfree package that can be redistributed in binary
|
<listitem>
|
||||||
form. That is, it’s legal to redistribute the
|
<para>
|
||||||
<emphasis>output</emphasis> of the derivation. This means that
|
Unfree package that can be redistributed in binary form. That is, it’s
|
||||||
the package can be included in the Nixpkgs
|
legal to redistribute the <emphasis>output</emphasis> of the derivation.
|
||||||
channel.</para>
|
This means that the package can be included in the Nixpkgs channel.
|
||||||
|
</para>
|
||||||
<para>Sometimes proprietary software can only be redistributed
|
<para>
|
||||||
unmodified. Make sure the builder doesn’t actually modify the
|
Sometimes proprietary software can only be redistributed unmodified.
|
||||||
original binaries; otherwise we’re breaking the license. For
|
Make sure the builder doesn’t actually modify the original binaries;
|
||||||
instance, the NVIDIA X11 drivers can be redistributed unmodified,
|
otherwise we’re breaking the license. For instance, the NVIDIA X11
|
||||||
but our builder applies <command>patchelf</command> to make them
|
drivers can be redistributed unmodified, but our builder applies
|
||||||
work. Thus, its license is <varname>"unfree"</varname> and it
|
<command>patchelf</command> to make them work. Thus, its license is
|
||||||
cannot be included in the Nixpkgs channel.</para></listitem>
|
<varname>"unfree"</varname> and it cannot be included in the Nixpkgs
|
||||||
|
channel.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>stdenv.lib.licenses.unfree</varname>,
|
<term><varname>stdenv.lib.licenses.unfree</varname>,
|
||||||
<varname>"unfree"</varname></term>
|
<varname>"unfree"</varname>
|
||||||
|
</term>
|
||||||
<listitem><para>Unfree package that cannot be redistributed. You
|
<listitem>
|
||||||
can build it yourself, but you cannot redistribute the output of
|
<para>
|
||||||
the derivation. Thus it cannot be included in the Nixpkgs
|
Unfree package that cannot be redistributed. You can build it yourself,
|
||||||
channel.</para></listitem>
|
but you cannot redistribute the output of the derivation. Thus it cannot
|
||||||
|
be included in the Nixpkgs channel.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>stdenv.lib.licenses.unfreeRedistributableFirmware</varname>,
|
<term><varname>stdenv.lib.licenses.unfreeRedistributableFirmware</varname>,
|
||||||
<varname>"unfree-redistributable-firmware"</varname></term>
|
<varname>"unfree-redistributable-firmware"</varname>
|
||||||
|
</term>
|
||||||
<listitem><para>This package supplies unfree, redistributable
|
<listitem>
|
||||||
firmware. This is a separate value from
|
<para>
|
||||||
<varname>unfree-redistributable</varname> because not everybody
|
This package supplies unfree, redistributable firmware. This is a
|
||||||
cares whether firmware is free.</para></listitem>
|
separate value from <varname>unfree-redistributable</varname> because
|
||||||
|
not everybody cares whether firmware is free.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
</variablelist>
|
||||||
</variablelist>
|
</para>
|
||||||
|
</section>
|
||||||
</para>
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
+291
-77
@@ -5,105 +5,319 @@
|
|||||||
<chapter xmlns="http://docbook.org/ns/docbook"
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="chap-multiple-output">
|
xml:id="chap-multiple-output">
|
||||||
|
<title>Multiple-output packages</title>
|
||||||
|
<section>
|
||||||
|
<title>Introduction</title>
|
||||||
|
|
||||||
<title>Multiple-output packages</title>
|
<para>
|
||||||
|
The Nix language allows a derivation to produce multiple outputs, which is
|
||||||
|
similar to what is utilized by other Linux distribution packaging systems.
|
||||||
|
The outputs reside in separate nix store paths, so they can be mostly
|
||||||
|
handled independently of each other, including passing to build inputs,
|
||||||
|
garbage collection or binary substitution. The exception is that building
|
||||||
|
from source always produces all the outputs.
|
||||||
|
</para>
|
||||||
|
|
||||||
<section><title>Introduction</title>
|
<para>
|
||||||
<para>The Nix language allows a derivation to produce multiple outputs, which is similar to what is utilized by other Linux distribution packaging systems. The outputs reside in separate nix store paths, so they can be mostly handled independently of each other, including passing to build inputs, garbage collection or binary substitution. The exception is that building from source always produces all the outputs.</para>
|
The main motivation is to save disk space by reducing runtime closure sizes;
|
||||||
<para>The main motivation is to save disk space by reducing runtime closure sizes; consequently also sizes of substituted binaries get reduced. Splitting can be used to have more granular runtime dependencies, for example the typical reduction is to split away development-only files, as those are typically not needed during runtime. As a result, closure sizes of many packages can get reduced to a half or even much less.</para>
|
consequently also sizes of substituted binaries get reduced. Splitting can
|
||||||
<note><para>The reduction effects could be instead achieved by building the parts in completely separate derivations. That would often additionally reduce build-time closures, but it tends to be much harder to write such derivations, as build systems typically assume all parts are being built at once. This compromise approach of single source package producing multiple binary packages is also utilized often by rpm and deb.</para></note>
|
be used to have more granular runtime dependencies, for example the typical
|
||||||
</section>
|
reduction is to split away development-only files, as those are typically
|
||||||
|
not needed during runtime. As a result, closure sizes of many packages can
|
||||||
|
get reduced to a half or even much less.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<note>
|
||||||
|
<para>
|
||||||
|
The reduction effects could be instead achieved by building the parts in
|
||||||
|
completely separate derivations. That would often additionally reduce
|
||||||
|
build-time closures, but it tends to be much harder to write such
|
||||||
|
derivations, as build systems typically assume all parts are being built at
|
||||||
|
once. This compromise approach of single source package producing multiple
|
||||||
|
binary packages is also utilized often by rpm and deb.
|
||||||
|
</para>
|
||||||
|
</note>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<title>Installing a split package</title>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
When installing a package via <varname>systemPackages</varname> or
|
||||||
|
<command>nix-env</command> you have several options:
|
||||||
|
</para>
|
||||||
|
|
||||||
<section><title>Installing a split package</title>
|
|
||||||
<para>When installing a package via <varname>systemPackages</varname> or <command>nix-env</command> you have several options:</para>
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>You can install particular outputs explicitly, as each is available in the Nix language as an attribute of the package. The <varname>outputs</varname> attribute contains a list of output names.</para></listitem>
|
<listitem>
|
||||||
<listitem><para>You can let it use the default outputs. These are handled by <varname>meta.outputsToInstall</varname> attribute that contains a list of output names.</para>
|
<para>
|
||||||
<para>TODO: more about tweaking the attribute, etc.</para></listitem>
|
You can install particular outputs explicitly, as each is available in the
|
||||||
<listitem><para>NixOS provides configuration option <varname>environment.extraOutputsToInstall</varname> that allows adding extra outputs of <varname>environment.systemPackages</varname> atop the default ones. It's mainly meant for documentation and debug symbols, and it's also modified by specific options.</para>
|
Nix language as an attribute of the package. The
|
||||||
<note><para>At this moment there is no similar configurability for packages installed by <command>nix-env</command>. You can still use approach from <xref linkend="sec-modify-via-packageOverrides" /> to override <varname>meta.outputsToInstall</varname> attributes, but that's a rather inconvenient way.</para></note>
|
<varname>outputs</varname> attribute contains a list of output names.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
You can let it use the default outputs. These are handled by
|
||||||
|
<varname>meta.outputsToInstall</varname> attribute that contains a list of
|
||||||
|
output names.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
TODO: more about tweaking the attribute, etc.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
NixOS provides configuration option
|
||||||
|
<varname>environment.extraOutputsToInstall</varname> that allows adding
|
||||||
|
extra outputs of <varname>environment.systemPackages</varname> atop the
|
||||||
|
default ones. It's mainly meant for documentation and debug symbols, and
|
||||||
|
it's also modified by specific options.
|
||||||
|
</para>
|
||||||
|
<note>
|
||||||
|
<para>
|
||||||
|
At this moment there is no similar configurability for packages installed
|
||||||
|
by <command>nix-env</command>. You can still use approach from
|
||||||
|
<xref linkend="sec-modify-via-packageOverrides" /> to override
|
||||||
|
<varname>meta.outputsToInstall</varname> attributes, but that's a rather
|
||||||
|
inconvenient way.
|
||||||
|
</para>
|
||||||
|
</note>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
|
<section>
|
||||||
|
<title>Using a split package</title>
|
||||||
|
|
||||||
<section><title>Using a split package</title>
|
<para>
|
||||||
<para>In the Nix language the individual outputs can be reached explicitly as attributes, e.g. <varname>coreutils.info</varname>, but the typical case is just using packages as build inputs.</para>
|
In the Nix language the individual outputs can be reached explicitly as
|
||||||
<para>When a multiple-output derivation gets into a build input of another derivation, the <varname>dev</varname> output is added if it exists, otherwise the first output is added. In addition to that, <varname>propagatedBuildOutputs</varname> of that package which by default contain <varname>$outputBin</varname> and <varname>$outputLib</varname> are also added. (See <xref linkend="multiple-output-file-type-groups" />.)</para>
|
attributes, e.g. <varname>coreutils.info</varname>, but the typical case is
|
||||||
</section>
|
just using packages as build inputs.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
When a multiple-output derivation gets into a build input of another
|
||||||
|
derivation, the <varname>dev</varname> output is added if it exists,
|
||||||
|
otherwise the first output is added. In addition to that,
|
||||||
|
<varname>propagatedBuildOutputs</varname> of that package which by default
|
||||||
|
contain <varname>$outputBin</varname> and <varname>$outputLib</varname> are
|
||||||
|
also added. (See <xref linkend="multiple-output-file-type-groups" />.)
|
||||||
|
</para>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<title>Writing a split derivation</title>
|
||||||
|
|
||||||
<section><title>Writing a split derivation</title>
|
<para>
|
||||||
<para>Here you find how to write a derivation that produces multiple outputs.</para>
|
Here you find how to write a derivation that produces multiple outputs.
|
||||||
<para>In nixpkgs there is a framework supporting multiple-output derivations. It tries to cover most cases by default behavior. You can find the source separated in <<filename>nixpkgs/pkgs/build-support/setup-hooks/multiple-outputs.sh</filename>>; it's relatively well-readable. The whole machinery is triggered by defining the <varname>outputs</varname> attribute to contain the list of desired output names (strings).</para>
|
</para>
|
||||||
<programlisting>outputs = [ "bin" "dev" "out" "doc" ];</programlisting>
|
|
||||||
<para>Often such a single line is enough. For each output an equally named environment variable is passed to the builder and contains the path in nix store for that output. Typically you also want to have the main <varname>out</varname> output, as it catches any files that didn't get elsewhere.</para>
|
<para>
|
||||||
<note><para>There is a special handling of the <varname>debug</varname> output, described at <xref linkend="stdenv-separateDebugInfo" />.</para></note>
|
In nixpkgs there is a framework supporting multiple-output derivations. It
|
||||||
|
tries to cover most cases by default behavior. You can find the source
|
||||||
|
separated in
|
||||||
|
<<filename>nixpkgs/pkgs/build-support/setup-hooks/multiple-outputs.sh</filename>>;
|
||||||
|
it's relatively well-readable. The whole machinery is triggered by defining
|
||||||
|
the <varname>outputs</varname> attribute to contain the list of desired
|
||||||
|
output names (strings).
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<programlisting>outputs = [ "bin" "dev" "out" "doc" ];</programlisting>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Often such a single line is enough. For each output an equally named
|
||||||
|
environment variable is passed to the builder and contains the path in nix
|
||||||
|
store for that output. Typically you also want to have the main
|
||||||
|
<varname>out</varname> output, as it catches any files that didn't get
|
||||||
|
elsewhere.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<note>
|
||||||
|
<para>
|
||||||
|
There is a special handling of the <varname>debug</varname> output,
|
||||||
|
described at <xref linkend="stdenv-separateDebugInfo" />.
|
||||||
|
</para>
|
||||||
|
</note>
|
||||||
|
|
||||||
<section xml:id="multiple-output-file-binaries-first-convention">
|
<section xml:id="multiple-output-file-binaries-first-convention">
|
||||||
<title><quote>Binaries first</quote></title>
|
<title><quote>Binaries first</quote></title>
|
||||||
<para>A commonly adopted convention in <literal>nixpkgs</literal> is that executables provided by the package are contained within its first output. This convention allows the dependent packages to reference the executables provided by packages in a uniform manner. For instance, provided with the knowledge that the <literal>perl</literal> package contains a <literal>perl</literal> executable it can be referenced as <literal>${pkgs.perl}/bin/perl</literal> within a Nix derivation that needs to execute a Perl script.</para>
|
|
||||||
<para>The <literal>glibc</literal> package is a deliberate single exception to the <quote>binaries first</quote> convention. The <literal>glibc</literal> has <literal>libs</literal> as its first output allowing the libraries provided by <literal>glibc</literal> to be referenced directly (e.g. <literal>${stdenv.glibc}/lib/ld-linux-x86-64.so.2</literal>). The executables provided by <literal>glibc</literal> can be accessed via its <literal>bin</literal> attribute (e.g. <literal>${stdenv.glibc.bin}/bin/ldd</literal>).</para>
|
<para>
|
||||||
<para>The reason for why <literal>glibc</literal> deviates from the convention is because referencing a library provided by <literal>glibc</literal> is a very common operation among Nix packages. For instance, third-party executables packaged by Nix are typically patched and relinked with the relevant version of <literal>glibc</literal> libraries from Nix packages (please see the documentation on <link xlink:href="https://nixos.org/patchelf.html">patchelf</link> for more details).</para>
|
A commonly adopted convention in <literal>nixpkgs</literal> is that
|
||||||
|
executables provided by the package are contained within its first output.
|
||||||
|
This convention allows the dependent packages to reference the executables
|
||||||
|
provided by packages in a uniform manner. For instance, provided with the
|
||||||
|
knowledge that the <literal>perl</literal> package contains a
|
||||||
|
<literal>perl</literal> executable it can be referenced as
|
||||||
|
<literal>${pkgs.perl}/bin/perl</literal> within a Nix derivation that needs
|
||||||
|
to execute a Perl script.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The <literal>glibc</literal> package is a deliberate single exception to
|
||||||
|
the <quote>binaries first</quote> convention. The <literal>glibc</literal>
|
||||||
|
has <literal>libs</literal> as its first output allowing the libraries
|
||||||
|
provided by <literal>glibc</literal> to be referenced directly (e.g.
|
||||||
|
<literal>${stdenv.glibc}/lib/ld-linux-x86-64.so.2</literal>). The
|
||||||
|
executables provided by <literal>glibc</literal> can be accessed via its
|
||||||
|
<literal>bin</literal> attribute (e.g.
|
||||||
|
<literal>${stdenv.glibc.bin}/bin/ldd</literal>).
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The reason for why <literal>glibc</literal> deviates from the convention is
|
||||||
|
because referencing a library provided by <literal>glibc</literal> is a
|
||||||
|
very common operation among Nix packages. For instance, third-party
|
||||||
|
executables packaged by Nix are typically patched and relinked with the
|
||||||
|
relevant version of <literal>glibc</literal> libraries from Nix packages
|
||||||
|
(please see the documentation on
|
||||||
|
<link xlink:href="https://nixos.org/patchelf.html">patchelf</link> for more
|
||||||
|
details).
|
||||||
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="multiple-output-file-type-groups">
|
<section xml:id="multiple-output-file-type-groups">
|
||||||
<title>File type groups</title>
|
<title>File type groups</title>
|
||||||
<para>The support code currently recognizes some particular kinds of outputs and either instructs the build system of the package to put files into their desired outputs or it moves the files during the fixup phase. Each group of file types has an <varname>outputFoo</varname> variable specifying the output name where they should go. If that variable isn't defined by the derivation writer, it is guessed – a default output name is defined, falling back to other possibilities if the output isn't defined.</para>
|
|
||||||
|
<para>
|
||||||
|
The support code currently recognizes some particular kinds of outputs and
|
||||||
|
either instructs the build system of the package to put files into their
|
||||||
|
desired outputs or it moves the files during the fixup phase. Each group of
|
||||||
|
file types has an <varname>outputFoo</varname> variable specifying the
|
||||||
|
output name where they should go. If that variable isn't defined by the
|
||||||
|
derivation writer, it is guessed – a default output name is defined,
|
||||||
|
falling back to other possibilities if the output isn't defined.
|
||||||
|
</para>
|
||||||
|
|
||||||
<variablelist>
|
<variablelist>
|
||||||
|
<varlistentry>
|
||||||
<varlistentry><term><varname>
|
<term><varname>
|
||||||
$outputDev</varname></term><listitem><para>
|
$outputDev</varname>
|
||||||
is for development-only files. These include C(++) headers, pkg-config, cmake and aclocal files. They go to <varname>dev</varname> or <varname>out</varname> by default.
|
</term>
|
||||||
</para></listitem>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
is for development-only files. These include C(++) headers, pkg-config,
|
||||||
|
cmake and aclocal files. They go to <varname>dev</varname> or
|
||||||
|
<varname>out</varname> by default.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>
|
||||||
|
$outputBin</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
is meant for user-facing binaries, typically residing in bin/. They go
|
||||||
|
to <varname>bin</varname> or <varname>out</varname> by default.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>
|
||||||
|
$outputLib</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
is meant for libraries, typically residing in <filename>lib/</filename>
|
||||||
|
and <filename>libexec/</filename>. They go to <varname>lib</varname> or
|
||||||
|
<varname>out</varname> by default.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>
|
||||||
|
$outputDoc</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
is for user documentation, typically residing in
|
||||||
|
<filename>share/doc/</filename>. It goes to <varname>doc</varname> or
|
||||||
|
<varname>out</varname> by default.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>
|
||||||
|
$outputDevdoc</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
is for <emphasis>developer</emphasis> documentation. Currently we count
|
||||||
|
gtk-doc and devhelp books in there. It goes to <varname>devdoc</varname>
|
||||||
|
or is removed (!) by default. This is because e.g. gtk-doc tends to be
|
||||||
|
rather large and completely unused by nixpkgs users.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>
|
||||||
|
$outputMan</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
is for man pages (except for section 3). They go to
|
||||||
|
<varname>man</varname> or <varname>$outputBin</varname> by default.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>
|
||||||
|
$outputDevman</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
is for section 3 man pages. They go to <varname>devman</varname> or
|
||||||
|
<varname>$outputMan</varname> by default.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>
|
||||||
|
$outputInfo</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
is for info pages. They go to <varname>info</varname> or
|
||||||
|
<varname>$outputBin</varname> by default.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry><term><varname>
|
|
||||||
$outputBin</varname></term><listitem><para>
|
|
||||||
is meant for user-facing binaries, typically residing in bin/. They go to <varname>bin</varname> or <varname>out</varname> by default.
|
|
||||||
</para></listitem></varlistentry>
|
|
||||||
|
|
||||||
<varlistentry><term><varname>
|
|
||||||
$outputLib</varname></term><listitem><para>
|
|
||||||
is meant for libraries, typically residing in <filename>lib/</filename> and <filename>libexec/</filename>. They go to <varname>lib</varname> or <varname>out</varname> by default.
|
|
||||||
</para></listitem></varlistentry>
|
|
||||||
|
|
||||||
<varlistentry><term><varname>
|
|
||||||
$outputDoc</varname></term><listitem><para>
|
|
||||||
is for user documentation, typically residing in <filename>share/doc/</filename>. It goes to <varname>doc</varname> or <varname>out</varname> by default.
|
|
||||||
</para></listitem></varlistentry>
|
|
||||||
|
|
||||||
<varlistentry><term><varname>
|
|
||||||
$outputDevdoc</varname></term><listitem><para>
|
|
||||||
is for <emphasis>developer</emphasis> documentation. Currently we count gtk-doc and devhelp books in there. It goes to <varname>devdoc</varname> or is removed (!) by default. This is because e.g. gtk-doc tends to be rather large and completely unused by nixpkgs users.
|
|
||||||
</para></listitem></varlistentry>
|
|
||||||
|
|
||||||
<varlistentry><term><varname>
|
|
||||||
$outputMan</varname></term><listitem><para>
|
|
||||||
is for man pages (except for section 3). They go to <varname>man</varname> or <varname>$outputBin</varname> by default.
|
|
||||||
</para></listitem></varlistentry>
|
|
||||||
|
|
||||||
<varlistentry><term><varname>
|
|
||||||
$outputDevman</varname></term><listitem><para>
|
|
||||||
is for section 3 man pages. They go to <varname>devman</varname> or <varname>$outputMan</varname> by default.
|
|
||||||
</para></listitem></varlistentry>
|
|
||||||
|
|
||||||
<varlistentry><term><varname>
|
|
||||||
$outputInfo</varname></term><listitem><para>
|
|
||||||
is for info pages. They go to <varname>info</varname> or <varname>$outputBin</varname> by default.
|
|
||||||
</para></listitem></varlistentry>
|
|
||||||
|
|
||||||
</variablelist>
|
</variablelist>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section><title>Common caveats</title>
|
<section>
|
||||||
|
<title>Common caveats</title>
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>Some configure scripts don't like some of the parameters passed by default by the framework, e.g. <literal>--docdir=/foo/bar</literal>. You can disable this by setting <literal>setOutputFlags = false;</literal>.</para></listitem>
|
<listitem>
|
||||||
<listitem><para>The outputs of a single derivation can retain references to each other, but note that circular references are not allowed. (And each strongly-connected component would act as a single output anyway.)</para></listitem>
|
<para>
|
||||||
<listitem><para>Most of split packages contain their core functionality in libraries. These libraries tend to refer to various kind of data that typically gets into <varname>out</varname>, e.g. locale strings, so there is often no advantage in separating the libraries into <varname>lib</varname>, as keeping them in <varname>out</varname> is easier.</para></listitem>
|
Some configure scripts don't like some of the parameters passed by
|
||||||
<listitem><para>Some packages have hidden assumptions on install paths, which complicates splitting.</para></listitem>
|
default by the framework, e.g. <literal>--docdir=/foo/bar</literal>. You
|
||||||
|
can disable this by setting <literal>setOutputFlags = false;</literal>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The outputs of a single derivation can retain references to each other,
|
||||||
|
but note that circular references are not allowed. (And each
|
||||||
|
strongly-connected component would act as a single output anyway.)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Most of split packages contain their core functionality in libraries.
|
||||||
|
These libraries tend to refer to various kind of data that typically gets
|
||||||
|
into <varname>out</varname>, e.g. locale strings, so there is often no
|
||||||
|
advantage in separating the libraries into <varname>lib</varname>, as
|
||||||
|
keeping them in <varname>out</varname> is easier.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Some packages have hidden assumptions on install paths, which complicates
|
||||||
|
splitting.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
|
</section>
|
||||||
</section><!--Writing a split derivation-->
|
<!--Writing a split derivation-->
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
+121
-91
@@ -1,95 +1,117 @@
|
|||||||
<chapter xmlns="http://docbook.org/ns/docbook"
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="chap-overlays">
|
xml:id="chap-overlays">
|
||||||
|
<title>Overlays</title>
|
||||||
<title>Overlays</title>
|
<para>
|
||||||
|
This chapter describes how to extend and change Nixpkgs packages using
|
||||||
<para>This chapter describes how to extend and change Nixpkgs packages using
|
overlays. Overlays are used to add layers in the fix-point used by Nixpkgs to
|
||||||
overlays. Overlays are used to add layers in the fix-point used by Nixpkgs
|
compose the set of all packages.
|
||||||
to compose the set of all packages.</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>Nixpkgs can be configured with a list of overlays, which are
|
Nixpkgs can be configured with a list of overlays, which are applied in
|
||||||
applied in order. This means that the order of the overlays can be significant
|
order. This means that the order of the overlays can be significant if
|
||||||
if multiple layers override the same package.</para>
|
multiple layers override the same package.
|
||||||
|
</para>
|
||||||
<!--============================================================-->
|
<!--============================================================-->
|
||||||
|
<section xml:id="sec-overlays-install">
|
||||||
|
<title>Installing overlays</title>
|
||||||
|
|
||||||
<section xml:id="sec-overlays-install">
|
<para>
|
||||||
<title>Installing overlays</title>
|
The list of overlays is determined as follows.
|
||||||
|
</para>
|
||||||
<para>The list of overlays is determined as follows.</para>
|
|
||||||
|
|
||||||
<para>If the <varname>overlays</varname> argument is not provided explicitly, we look for overlays in a path. The path
|
|
||||||
is determined as follows:
|
|
||||||
|
|
||||||
<orderedlist>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
If the <varname>overlays</varname> argument is not provided explicitly, we
|
||||||
|
look for overlays in a path. The path is determined as follows:
|
||||||
|
<orderedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>First, if an <varname>overlays</varname> argument to the nixpkgs function itself is given,
|
<para>
|
||||||
then that is used.</para>
|
First, if an <varname>overlays</varname> argument to the nixpkgs function
|
||||||
|
itself is given, then that is used.
|
||||||
<para>This can be passed explicitly when importing nipxkgs, for example
|
</para>
|
||||||
<literal>import <nixpkgs> { overlays = [ overlay1 overlay2 ]; }</literal>.</para>
|
<para>
|
||||||
|
This can be passed explicitly when importing nipxkgs, for example
|
||||||
|
<literal>import <nixpkgs> { overlays = [ overlay1 overlay2 ];
|
||||||
|
}</literal>.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Otherwise, if the Nix path entry <literal><nixpkgs-overlays></literal> exists, we look for overlays
|
<para>
|
||||||
at that path, as described below.</para>
|
Otherwise, if the Nix path entry <literal><nixpkgs-overlays></literal>
|
||||||
|
exists, we look for overlays at that path, as described below.
|
||||||
<para>See the section on <literal>NIX_PATH</literal> in the Nix manual for more details on how to
|
</para>
|
||||||
set a value for <literal><nixpkgs-overlays>.</literal></para>
|
<para>
|
||||||
|
See the section on <literal>NIX_PATH</literal> in the Nix manual for more
|
||||||
|
details on how to set a value for
|
||||||
|
<literal><nixpkgs-overlays>.</literal>
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>If one of <filename>~/.config/nixpkgs/overlays.nix</filename> and
|
<para>
|
||||||
<filename>~/.config/nixpkgs/overlays/</filename> exists, then we look for overlays at that path, as
|
If one of <filename>~/.config/nixpkgs/overlays.nix</filename> and
|
||||||
described below. It is an error if both exist.</para>
|
<filename>~/.config/nixpkgs/overlays/</filename> exists, then we look for
|
||||||
|
overlays at that path, as described below. It is an error if both exist.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
</orderedlist>
|
||||||
|
</para>
|
||||||
|
|
||||||
</orderedlist>
|
<para>
|
||||||
</para>
|
If we are looking for overlays at a path, then there are two cases:
|
||||||
|
|
||||||
<para>If we are looking for overlays at a path, then there are two cases:
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para>If the path is a file, then the file is imported as a Nix expression and used as the list of
|
|
||||||
overlays.</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>If the path is a directory, then we take the content of the directory, order it
|
|
||||||
lexicographically, and attempt to interpret each as an overlay by:
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Importing the file, if it is a <literal>.nix</literal> file.</para>
|
<para>
|
||||||
|
If the path is a file, then the file is imported as a Nix expression and
|
||||||
|
used as the list of overlays.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Importing a top-level <filename>default.nix</filename> file, if it is a directory.</para>
|
<para>
|
||||||
|
If the path is a directory, then we take the content of the directory,
|
||||||
|
order it lexicographically, and attempt to interpret each as an overlay
|
||||||
|
by:
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Importing the file, if it is a <literal>.nix</literal> file.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Importing a top-level <filename>default.nix</filename> file, if it is
|
||||||
|
a directory.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>On a NixOS system the value of the <literal>nixpkgs.overlays</literal> option, if present,
|
<para>
|
||||||
is passed to the system Nixpkgs directly as an argument. Note that this does not affect the overlays for
|
On a NixOS system the value of the <literal>nixpkgs.overlays</literal>
|
||||||
non-NixOS operations (e.g. <literal>nix-env</literal>), which are looked up independently.</para>
|
option, if present, is passed to the system Nixpkgs directly as an argument.
|
||||||
|
Note that this does not affect the overlays for non-NixOS operations (e.g.
|
||||||
<para>The <filename>overlays.nix</filename> option therefore provides a convenient way to use the same
|
<literal>nix-env</literal>), which are looked up independently.
|
||||||
overlays for a NixOS system configuration and user configuration: the same file can be used
|
</para>
|
||||||
as <filename>overlays.nix</filename> and imported as the value of <literal>nixpkgs.overlays</literal>.</para>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The <filename>overlays.nix</filename> option therefore provides a convenient
|
||||||
|
way to use the same overlays for a NixOS system configuration and user
|
||||||
|
configuration: the same file can be used as
|
||||||
|
<filename>overlays.nix</filename> and imported as the value of
|
||||||
|
<literal>nixpkgs.overlays</literal>.
|
||||||
|
</para>
|
||||||
|
</section>
|
||||||
<!--============================================================-->
|
<!--============================================================-->
|
||||||
|
<section xml:id="sec-overlays-definition">
|
||||||
|
<title>Defining overlays</title>
|
||||||
|
|
||||||
<section xml:id="sec-overlays-definition">
|
<para>
|
||||||
<title>Defining overlays</title>
|
Overlays are Nix functions which accept two arguments, conventionally called
|
||||||
|
<varname>self</varname> and <varname>super</varname>, and return a set of
|
||||||
<para>Overlays are Nix functions which accept two arguments,
|
packages. For example, the following is a valid overlay.
|
||||||
conventionally called <varname>self</varname> and <varname>super</varname>,
|
</para>
|
||||||
and return a set of packages. For example, the following is a valid overlay.</para>
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
self: super:
|
self: super:
|
||||||
@@ -104,31 +126,39 @@ self: super:
|
|||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>The first argument (<varname>self</varname>) corresponds to the final package
|
<para>
|
||||||
set. You should use this set for the dependencies of all packages specified in your
|
The first argument (<varname>self</varname>) corresponds to the final
|
||||||
overlay. For example, all the dependencies of <varname>rr</varname> in the example above come
|
package set. You should use this set for the dependencies of all packages
|
||||||
from <varname>self</varname>, as well as the overridden dependencies used in the
|
specified in your overlay. For example, all the dependencies of
|
||||||
<varname>boost</varname> override.</para>
|
<varname>rr</varname> in the example above come from
|
||||||
|
<varname>self</varname>, as well as the overridden dependencies used in the
|
||||||
|
<varname>boost</varname> override.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>The second argument (<varname>super</varname>)
|
<para>
|
||||||
corresponds to the result of the evaluation of the previous stages of
|
The second argument (<varname>super</varname>) corresponds to the result of
|
||||||
Nixpkgs. It does not contain any of the packages added by the current
|
the evaluation of the previous stages of Nixpkgs. It does not contain any of
|
||||||
overlay, nor any of the following overlays. This set should be used either
|
the packages added by the current overlay, nor any of the following
|
||||||
to refer to packages you wish to override, or to access functions defined
|
overlays. This set should be used either to refer to packages you wish to
|
||||||
in Nixpkgs. For example, the original recipe of <varname>boost</varname>
|
override, or to access functions defined in Nixpkgs. For example, the
|
||||||
in the above example, comes from <varname>super</varname>, as well as the
|
original recipe of <varname>boost</varname> in the above example, comes from
|
||||||
<varname>callPackage</varname> function.</para>
|
<varname>super</varname>, as well as the <varname>callPackage</varname>
|
||||||
|
function.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>The value returned by this function should be a set similar to
|
<para>
|
||||||
<filename>pkgs/top-level/all-packages.nix</filename>, containing
|
The value returned by this function should be a set similar to
|
||||||
overridden and/or new packages.</para>
|
<filename>pkgs/top-level/all-packages.nix</filename>, containing overridden
|
||||||
|
and/or new packages.
|
||||||
<para>Overlays are similar to other methods for customizing Nixpkgs, in particular
|
</para>
|
||||||
the <literal>packageOverrides</literal> attribute described in <xref linkend="sec-modify-via-packageOverrides"/>.
|
|
||||||
Indeed, <literal>packageOverrides</literal> acts as an overlay with only the
|
|
||||||
<varname>super</varname> argument. It is therefore appropriate for basic use,
|
|
||||||
but overlays are more powerful and easier to distribute.</para>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Overlays are similar to other methods for customizing Nixpkgs, in particular
|
||||||
|
the <literal>packageOverrides</literal> attribute described in
|
||||||
|
<xref linkend="sec-modify-via-packageOverrides"/>. Indeed,
|
||||||
|
<literal>packageOverrides</literal> acts as an overlay with only the
|
||||||
|
<varname>super</varname> argument. It is therefore appropriate for basic
|
||||||
|
use, but overlays are more powerful and easier to distribute.
|
||||||
|
</para>
|
||||||
|
</section>
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
+377
-410
@@ -1,206 +1,185 @@
|
|||||||
<chapter xmlns="http://docbook.org/ns/docbook"
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="chap-package-notes">
|
xml:id="chap-package-notes">
|
||||||
|
<title>Package Notes</title>
|
||||||
<title>Package Notes</title>
|
<para>
|
||||||
|
This chapter contains information about how to use and maintain the Nix
|
||||||
<para>This chapter contains information about how to use and maintain
|
expressions for a number of specific packages, such as the Linux kernel or
|
||||||
the Nix expressions for a number of specific packages, such as the
|
X.org.
|
||||||
Linux kernel or X.org.</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
<!--============================================================-->
|
<!--============================================================-->
|
||||||
|
<section xml:id="sec-linux-kernel">
|
||||||
|
<title>Linux kernel</title>
|
||||||
|
|
||||||
<section xml:id="sec-linux-kernel">
|
<para>
|
||||||
|
The Nix expressions to build the Linux kernel are in
|
||||||
|
<link
|
||||||
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/os-specific/linux/kernel"><filename>pkgs/os-specific/linux/kernel</filename></link>.
|
||||||
|
</para>
|
||||||
|
|
||||||
<title>Linux kernel</title>
|
<para>
|
||||||
|
The function that builds the kernel has an argument
|
||||||
<para>The Nix expressions to build the Linux kernel are in <link
|
<varname>kernelPatches</varname> which should be a list of <literal>{name,
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/os-specific/linux/kernel"><filename>pkgs/os-specific/linux/kernel</filename></link>.</para>
|
patch, extraConfig}</literal> attribute sets, where <varname>name</varname>
|
||||||
|
is the name of the patch (which is included in the kernel’s
|
||||||
<para>The function that builds the kernel has an argument
|
<varname>meta.description</varname> attribute), <varname>patch</varname> is
|
||||||
<varname>kernelPatches</varname> which should be a list of
|
the patch itself (possibly compressed), and <varname>extraConfig</varname>
|
||||||
<literal>{name, patch, extraConfig}</literal> attribute sets, where
|
(optional) is a string specifying extra options to be concatenated to the
|
||||||
<varname>name</varname> is the name of the patch (which is included in
|
kernel configuration file (<filename>.config</filename>).
|
||||||
the kernel’s <varname>meta.description</varname> attribute),
|
</para>
|
||||||
<varname>patch</varname> is the patch itself (possibly compressed),
|
|
||||||
and <varname>extraConfig</varname> (optional) is a string specifying
|
|
||||||
extra options to be concatenated to the kernel configuration file
|
|
||||||
(<filename>.config</filename>).</para>
|
|
||||||
|
|
||||||
<para>The kernel derivation exports an attribute
|
|
||||||
<varname>features</varname> specifying whether optional functionality
|
|
||||||
is or isn’t enabled. This is used in NixOS to implement
|
|
||||||
kernel-specific behaviour. For instance, if the kernel has the
|
|
||||||
<varname>iwlwifi</varname> feature (i.e. has built-in support for
|
|
||||||
Intel wireless chipsets), then NixOS doesn’t have to build the
|
|
||||||
external <varname>iwlwifi</varname> package:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The kernel derivation exports an attribute <varname>features</varname>
|
||||||
|
specifying whether optional functionality is or isn’t enabled. This is
|
||||||
|
used in NixOS to implement kernel-specific behaviour. For instance, if the
|
||||||
|
kernel has the <varname>iwlwifi</varname> feature (i.e. has built-in support
|
||||||
|
for Intel wireless chipsets), then NixOS doesn’t have to build the
|
||||||
|
external <varname>iwlwifi</varname> package:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
modulesTree = [kernel]
|
modulesTree = [kernel]
|
||||||
++ pkgs.lib.optional (!kernel.features ? iwlwifi) kernelPackages.iwlwifi
|
++ pkgs.lib.optional (!kernel.features ? iwlwifi) kernelPackages.iwlwifi
|
||||||
++ ...;
|
++ ...;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
|
How to add a new (major) version of the Linux kernel to Nixpkgs:
|
||||||
<para>How to add a new (major) version of the Linux kernel to Nixpkgs:
|
|
||||||
|
|
||||||
<orderedlist>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>Copy the old Nix expression
|
|
||||||
(e.g. <filename>linux-2.6.21.nix</filename>) to the new one
|
|
||||||
(e.g. <filename>linux-2.6.22.nix</filename>) and update it.</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>Add the new kernel to <filename>all-packages.nix</filename>
|
|
||||||
(e.g., create an attribute
|
|
||||||
<varname>kernel_2_6_22</varname>).</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>Now we’re going to update the kernel configuration. First
|
|
||||||
unpack the kernel. Then for each supported platform
|
|
||||||
(<literal>i686</literal>, <literal>x86_64</literal>,
|
|
||||||
<literal>uml</literal>) do the following:
|
|
||||||
|
|
||||||
<orderedlist>
|
<orderedlist>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Make an copy from the old
|
<para>
|
||||||
config (e.g. <filename>config-2.6.21-i686-smp</filename>) to
|
Copy the old Nix expression (e.g. <filename>linux-2.6.21.nix</filename>)
|
||||||
the new one
|
to the new one (e.g. <filename>linux-2.6.22.nix</filename>) and update
|
||||||
(e.g. <filename>config-2.6.22-i686-smp</filename>).</para>
|
it.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Copy the config file for this platform
|
<para>
|
||||||
(e.g. <filename>config-2.6.22-i686-smp</filename>) to
|
Add the new kernel to <filename>all-packages.nix</filename> (e.g., create
|
||||||
|
an attribute <varname>kernel_2_6_22</varname>).
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Now we’re going to update the kernel configuration. First unpack the
|
||||||
|
kernel. Then for each supported platform (<literal>i686</literal>,
|
||||||
|
<literal>x86_64</literal>, <literal>uml</literal>) do the following:
|
||||||
|
<orderedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Make an copy from the old config (e.g.
|
||||||
|
<filename>config-2.6.21-i686-smp</filename>) to the new one (e.g.
|
||||||
|
<filename>config-2.6.22-i686-smp</filename>).
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Copy the config file for this platform (e.g.
|
||||||
|
<filename>config-2.6.22-i686-smp</filename>) to
|
||||||
<filename>.config</filename> in the kernel source tree.
|
<filename>.config</filename> in the kernel source tree.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Run <literal>make oldconfig
|
<para>
|
||||||
ARCH=<replaceable>{i386,x86_64,um}</replaceable></literal>
|
Run <literal>make oldconfig
|
||||||
and answer all questions. (For the uml configuration, also
|
ARCH=<replaceable>{i386,x86_64,um}</replaceable></literal> and answer
|
||||||
add <literal>SHELL=bash</literal>.) Make sure to keep the
|
all questions. (For the uml configuration, also add
|
||||||
configuration consistent between platforms (i.e. don’t
|
<literal>SHELL=bash</literal>.) Make sure to keep the configuration
|
||||||
enable some feature on <literal>i686</literal> and disable
|
consistent between platforms (i.e. don’t enable some feature on
|
||||||
it on <literal>x86_64</literal>).
|
<literal>i686</literal> and disable it on <literal>x86_64</literal>).
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>If needed you can also run <literal>make
|
<para>
|
||||||
menuconfig</literal>:
|
If needed you can also run <literal>make menuconfig</literal>:
|
||||||
|
<screen>
|
||||||
<screen>
|
|
||||||
$ nix-env -i ncurses
|
$ nix-env -i ncurses
|
||||||
$ export NIX_CFLAGS_LINK=-lncurses
|
$ export NIX_CFLAGS_LINK=-lncurses
|
||||||
$ make menuconfig ARCH=<replaceable>arch</replaceable></screen>
|
$ make menuconfig ARCH=<replaceable>arch</replaceable></screen>
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Copy <filename>.config</filename> over the new config
|
<para>
|
||||||
file (e.g. <filename>config-2.6.22-i686-smp</filename>).</para>
|
Copy <filename>.config</filename> over the new config file (e.g.
|
||||||
|
<filename>config-2.6.22-i686-smp</filename>).
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
</orderedlist>
|
</orderedlist>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Test building the kernel: <literal>nix-build -A kernel_2_6_22</literal>.
|
||||||
|
If it compiles, ship it! For extra credit, try booting NixOS with it.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
It may be that the new kernel requires updating the external kernel
|
||||||
|
modules and kernel-dependent packages listed in the
|
||||||
|
<varname>linuxPackagesFor</varname> function in
|
||||||
|
<filename>all-packages.nix</filename> (such as the NVIDIA drivers, AUFS,
|
||||||
|
etc.). If the updated packages aren’t backwards compatible with older
|
||||||
|
kernels, you may need to keep the older versions around.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</orderedlist>
|
||||||
|
</para>
|
||||||
|
</section>
|
||||||
|
<!--============================================================-->
|
||||||
|
<section xml:id="sec-xorg">
|
||||||
|
<title>X.org</title>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The Nix expressions for the X.org packages reside in
|
||||||
|
<filename>pkgs/servers/x11/xorg/default.nix</filename>. This file is
|
||||||
|
automatically generated from lists of tarballs in an X.org release. As such
|
||||||
|
it should not be modified directly; rather, you should modify the lists, the
|
||||||
|
generator script or the file
|
||||||
|
<filename>pkgs/servers/x11/xorg/overrides.nix</filename>, in which you can
|
||||||
|
override or add to the derivations produced by the generator.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</listitem>
|
<para>
|
||||||
|
The generator is invoked as follows:
|
||||||
<listitem>
|
|
||||||
<para>Test building the kernel: <literal>nix-build -A
|
|
||||||
kernel_2_6_22</literal>. If it compiles, ship it! For extra
|
|
||||||
credit, try booting NixOS with it.</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>It may be that the new kernel requires updating the external
|
|
||||||
kernel modules and kernel-dependent packages listed in the
|
|
||||||
<varname>linuxPackagesFor</varname> function in
|
|
||||||
<filename>all-packages.nix</filename> (such as the NVIDIA drivers,
|
|
||||||
AUFS, etc.). If the updated packages aren’t backwards compatible
|
|
||||||
with older kernels, you may need to keep the older versions
|
|
||||||
around.</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
</orderedlist>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<!--============================================================-->
|
|
||||||
|
|
||||||
<section xml:id="sec-xorg">
|
|
||||||
|
|
||||||
<title>X.org</title>
|
|
||||||
|
|
||||||
<para>The Nix expressions for the X.org packages reside in
|
|
||||||
<filename>pkgs/servers/x11/xorg/default.nix</filename>. This file is
|
|
||||||
automatically generated from lists of tarballs in an X.org release.
|
|
||||||
As such it should not be modified directly; rather, you should modify
|
|
||||||
the lists, the generator script or the file
|
|
||||||
<filename>pkgs/servers/x11/xorg/overrides.nix</filename>, in which you
|
|
||||||
can override or add to the derivations produced by the
|
|
||||||
generator.</para>
|
|
||||||
|
|
||||||
<para>The generator is invoked as follows:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ cd pkgs/servers/x11/xorg
|
$ cd pkgs/servers/x11/xorg
|
||||||
$ cat tarballs-7.5.list extra.list old.list \
|
$ cat tarballs-7.5.list extra.list old.list \
|
||||||
| perl ./generate-expr-from-tarballs.pl
|
| perl ./generate-expr-from-tarballs.pl
|
||||||
</screen>
|
</screen>
|
||||||
|
For each of the tarballs in the <filename>.list</filename> files, the script
|
||||||
|
downloads it, unpacks it, and searches its <filename>configure.ac</filename>
|
||||||
|
and <filename>*.pc.in</filename> files for dependencies. This information is
|
||||||
|
used to generate <filename>default.nix</filename>. The generator caches
|
||||||
|
downloaded tarballs between runs. Pay close attention to the <literal>NOT
|
||||||
|
FOUND: <replaceable>name</replaceable></literal> messages at the end of the
|
||||||
|
run, since they may indicate missing dependencies. (Some might be optional
|
||||||
|
dependencies, however.)
|
||||||
|
</para>
|
||||||
|
|
||||||
For each of the tarballs in the <filename>.list</filename> files, the
|
<para>
|
||||||
script downloads it, unpacks it, and searches its
|
A file like <filename>tarballs-7.5.list</filename> contains all tarballs in
|
||||||
<filename>configure.ac</filename> and <filename>*.pc.in</filename>
|
a X.org release. It can be generated like this:
|
||||||
files for dependencies. This information is used to generate
|
|
||||||
<filename>default.nix</filename>. The generator caches downloaded
|
|
||||||
tarballs between runs. Pay close attention to the <literal>NOT FOUND:
|
|
||||||
<replaceable>name</replaceable></literal> messages at the end of the
|
|
||||||
run, since they may indicate missing dependencies. (Some might be
|
|
||||||
optional dependencies, however.)</para>
|
|
||||||
|
|
||||||
<para>A file like <filename>tarballs-7.5.list</filename> contains all
|
|
||||||
tarballs in a X.org release. It can be generated like this:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ export i="mirror://xorg/X11R7.4/src/everything/"
|
$ export i="mirror://xorg/X11R7.4/src/everything/"
|
||||||
$ cat $(PRINT_PATH=1 nix-prefetch-url $i | tail -n 1) \
|
$ cat $(PRINT_PATH=1 nix-prefetch-url $i | tail -n 1) \
|
||||||
| perl -e 'while (<>) { if (/(href|HREF)="([^"]*.bz2)"/) { print "$ENV{'i'}$2\n"; }; }' \
|
| perl -e 'while (<>) { if (/(href|HREF)="([^"]*.bz2)"/) { print "$ENV{'i'}$2\n"; }; }' \
|
||||||
| sort > tarballs-7.4.list
|
| sort > tarballs-7.4.list
|
||||||
</screen>
|
</screen>
|
||||||
|
<filename>extra.list</filename> contains libraries that aren’t part of
|
||||||
|
X.org proper, but are closely related to it, such as
|
||||||
|
<literal>libxcb</literal>. <filename>old.list</filename> contains some
|
||||||
|
packages that were removed from X.org, but are still needed by some people
|
||||||
|
or by other packages (such as <varname>imake</varname>).
|
||||||
|
</para>
|
||||||
|
|
||||||
<filename>extra.list</filename> contains libraries that aren’t part of
|
<para>
|
||||||
X.org proper, but are closely related to it, such as
|
If the expression for a package requires derivation attributes that the
|
||||||
<literal>libxcb</literal>. <filename>old.list</filename> contains
|
generator cannot figure out automatically (say, <varname>patches</varname>
|
||||||
some packages that were removed from X.org, but are still needed by
|
or a <varname>postInstall</varname> hook), you should modify
|
||||||
some people or by other packages (such as
|
<filename>pkgs/servers/x11/xorg/overrides.nix</filename>.
|
||||||
<varname>imake</varname>).</para>
|
</para>
|
||||||
|
</section>
|
||||||
<para>If the expression for a package requires derivation attributes
|
|
||||||
that the generator cannot figure out automatically (say,
|
|
||||||
<varname>patches</varname> or a <varname>postInstall</varname> hook),
|
|
||||||
you should modify
|
|
||||||
<filename>pkgs/servers/x11/xorg/overrides.nix</filename>.</para>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!--============================================================-->
|
<!--============================================================-->
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
<section>
|
<section>
|
||||||
<title>Gnome</title>
|
<title>Gnome</title>
|
||||||
@@ -208,21 +187,15 @@ you should modify
|
|||||||
<para>* How to update</para>
|
<para>* How to update</para>
|
||||||
</section>
|
</section>
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
|
||||||
<!--============================================================-->
|
<!--============================================================-->
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
<section>
|
<section>
|
||||||
<title>GCC</title>
|
<title>GCC</title>
|
||||||
<para>…</para>
|
<para>…</para>
|
||||||
</section>
|
</section>
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!--============================================================-->
|
<!--============================================================-->
|
||||||
|
<section xml:id="sec-eclipse">
|
||||||
<section xml:id="sec-eclipse">
|
|
||||||
|
|
||||||
<title>Eclipse</title>
|
<title>Eclipse</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
@@ -231,42 +204,36 @@ you should modify
|
|||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Nixpkgs provides a number of packages that will install Eclipse in
|
Nixpkgs provides a number of packages that will install Eclipse in its
|
||||||
its various forms, these range from the bare-bones Eclipse
|
various forms, these range from the bare-bones Eclipse Platform to the more
|
||||||
Platform to the more fully featured Eclipse SDK or Scala-IDE
|
fully featured Eclipse SDK or Scala-IDE packages and multiple version are
|
||||||
packages and multiple version are often available. It is possible
|
often available. It is possible to list available Eclipse packages by
|
||||||
to list available Eclipse packages by issuing the command:
|
issuing the command:
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-env -f '<nixpkgs>' -qaP -A eclipses --description
|
$ nix-env -f '<nixpkgs>' -qaP -A eclipses --description
|
||||||
</screen>
|
</screen>
|
||||||
|
|
||||||
Once an Eclipse variant is installed it can be run using the
|
Once an Eclipse variant is installed it can be run using the
|
||||||
<command>eclipse</command> command, as expected. From within
|
<command>eclipse</command> command, as expected. From within Eclipse it is
|
||||||
Eclipse it is then possible to install plugins in the usual manner
|
then possible to install plugins in the usual manner by either manually
|
||||||
by either manually specifying an Eclipse update site or by
|
specifying an Eclipse update site or by installing the Marketplace Client
|
||||||
installing the Marketplace Client plugin and using it to discover
|
plugin and using it to discover and install other plugins. This installation
|
||||||
and install other plugins. This installation method provides an
|
method provides an Eclipse installation that closely resemble a manually
|
||||||
Eclipse installation that closely resemble a manually installed
|
installed Eclipse.
|
||||||
Eclipse.
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
If you prefer to install plugins in a more declarative manner then
|
If you prefer to install plugins in a more declarative manner then Nixpkgs
|
||||||
Nixpkgs also offer a number of Eclipse plugins that can be
|
also offer a number of Eclipse plugins that can be installed in an
|
||||||
installed in an <emphasis>Eclipse environment</emphasis>. This
|
<emphasis>Eclipse environment</emphasis>. This type of environment is
|
||||||
type of environment is created using the function
|
created using the function <varname>eclipseWithPlugins</varname> found
|
||||||
<varname>eclipseWithPlugins</varname> found inside the
|
inside the <varname>nixpkgs.eclipses</varname> attribute set. This function
|
||||||
<varname>nixpkgs.eclipses</varname> attribute set. This function
|
takes as argument <literal>{ eclipse, plugins ? [], jvmArgs ? [] }</literal>
|
||||||
takes as argument <literal>{ eclipse, plugins ? [], jvmArgs ? []
|
where <varname>eclipse</varname> is a one of the Eclipse packages described
|
||||||
}</literal> where <varname>eclipse</varname> is a one of the
|
above, <varname>plugins</varname> is a list of plugin derivations, and
|
||||||
Eclipse packages described above, <varname>plugins</varname> is a
|
<varname>jvmArgs</varname> is a list of arguments given to the JVM running
|
||||||
list of plugin derivations, and <varname>jvmArgs</varname> is a
|
the Eclipse. For example, say you wish to install the latest Eclipse
|
||||||
list of arguments given to the JVM running the Eclipse. For
|
Platform with the popular Eclipse Color Theme plugin and also allow Eclipse
|
||||||
example, say you wish to install the latest Eclipse Platform with
|
to use more RAM. You could then add
|
||||||
the popular Eclipse Color Theme plugin and also allow Eclipse to
|
|
||||||
use more RAM. You could then add
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
packageOverrides = pkgs: {
|
packageOverrides = pkgs: {
|
||||||
myEclipse = with pkgs.eclipses; eclipseWithPlugins {
|
myEclipse = with pkgs.eclipses; eclipseWithPlugins {
|
||||||
@@ -276,42 +243,38 @@ packageOverrides = pkgs: {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
</screen>
|
</screen>
|
||||||
|
|
||||||
to your Nixpkgs configuration
|
to your Nixpkgs configuration
|
||||||
(<filename>~/.config/nixpkgs/config.nix</filename>) and install it by
|
(<filename>~/.config/nixpkgs/config.nix</filename>) and install it by
|
||||||
running <command>nix-env -f '<nixpkgs>' -iA
|
running <command>nix-env -f '<nixpkgs>' -iA myEclipse</command> and
|
||||||
myEclipse</command> and afterward run Eclipse as usual. It is
|
afterward run Eclipse as usual. It is possible to find out which plugins are
|
||||||
possible to find out which plugins are available for installation
|
available for installation using <varname>eclipseWithPlugins</varname> by
|
||||||
using <varname>eclipseWithPlugins</varname> by running
|
running
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-env -f '<nixpkgs>' -qaP -A eclipses.plugins --description
|
$ nix-env -f '<nixpkgs>' -qaP -A eclipses.plugins --description
|
||||||
</screen>
|
</screen>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
If there is a need to install plugins that are not available in
|
If there is a need to install plugins that are not available in Nixpkgs then
|
||||||
Nixpkgs then it may be possible to define these plugins outside
|
it may be possible to define these plugins outside Nixpkgs using the
|
||||||
Nixpkgs using the <varname>buildEclipseUpdateSite</varname> and
|
<varname>buildEclipseUpdateSite</varname> and
|
||||||
<varname>buildEclipsePlugin</varname> functions found in the
|
<varname>buildEclipsePlugin</varname> functions found in the
|
||||||
<varname>nixpkgs.eclipses.plugins</varname> attribute set. Use the
|
<varname>nixpkgs.eclipses.plugins</varname> attribute set. Use the
|
||||||
<varname>buildEclipseUpdateSite</varname> function to install a
|
<varname>buildEclipseUpdateSite</varname> function to install a plugin
|
||||||
plugin distributed as an Eclipse update site. This function takes
|
distributed as an Eclipse update site. This function takes <literal>{ name,
|
||||||
<literal>{ name, src }</literal> as argument where
|
src }</literal> as argument where <literal>src</literal> indicates the
|
||||||
<literal>src</literal> indicates the Eclipse update site archive.
|
Eclipse update site archive. All Eclipse features and plugins within the
|
||||||
All Eclipse features and plugins within the downloaded update site
|
downloaded update site will be installed. When an update site archive is not
|
||||||
will be installed. When an update site archive is not available
|
available then the <varname>buildEclipsePlugin</varname> function can be
|
||||||
then the <varname>buildEclipsePlugin</varname> function can be
|
used to install a plugin that consists of a pair of feature and plugin JARs.
|
||||||
used to install a plugin that consists of a pair of feature and
|
This function takes an argument <literal>{ name, srcFeature, srcPlugin
|
||||||
plugin JARs. This function takes an argument <literal>{ name,
|
}</literal> where <literal>srcFeature</literal> and
|
||||||
srcFeature, srcPlugin }</literal> where
|
<literal>srcPlugin</literal> are the feature and plugin JARs, respectively.
|
||||||
<literal>srcFeature</literal> and <literal>srcPlugin</literal> are
|
|
||||||
the feature and plugin JARs, respectively.
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Expanding the previous example with two plugins using the above
|
Expanding the previous example with two plugins using the above functions we
|
||||||
functions we have
|
have
|
||||||
<screen>
|
<screen>
|
||||||
packageOverrides = pkgs: {
|
packageOverrides = pkgs: {
|
||||||
myEclipse = with pkgs.eclipses; eclipseWithPlugins {
|
myEclipse = with pkgs.eclipses; eclipseWithPlugins {
|
||||||
@@ -343,42 +306,33 @@ packageOverrides = pkgs: {
|
|||||||
}
|
}
|
||||||
</screen>
|
</screen>
|
||||||
</para>
|
</para>
|
||||||
|
</section>
|
||||||
|
<section xml:id="sec-elm">
|
||||||
|
<title>Elm</title>
|
||||||
|
|
||||||
</section>
|
<para>
|
||||||
|
The Nix expressions for Elm reside in
|
||||||
<section xml:id="sec-elm">
|
<filename>pkgs/development/compilers/elm</filename>. They are generated
|
||||||
|
automatically by <command>update-elm.rb</command> script. One should specify
|
||||||
<title>Elm</title>
|
versions of Elm packages inside the script, clear the
|
||||||
|
<filename>packages</filename> directory and run the script from inside it.
|
||||||
<para>
|
<literal>elm-reactor</literal> is special because it also has Elm package
|
||||||
The Nix expressions for Elm reside in
|
dependencies. The process is not automated very much for now -- you should
|
||||||
<filename>pkgs/development/compilers/elm</filename>. They are generated
|
get the <literal>elm-reactor</literal> source tree (e.g. with
|
||||||
automatically by <command>update-elm.rb</command> script. One should
|
<command>nix-shell</command>) and run <command>elm2nix.rb</command> inside
|
||||||
specify versions of Elm packages inside the script, clear the
|
it. Place the resulting <filename>package.nix</filename> file into
|
||||||
<filename>packages</filename> directory and run the script from inside it.
|
<filename>packages/elm-reactor-elm.nix</filename>.
|
||||||
<literal>elm-reactor</literal> is special because it also has Elm package
|
</para>
|
||||||
dependencies. The process is not automated very much for now -- you should
|
</section>
|
||||||
get the <literal>elm-reactor</literal> source tree (e.g. with
|
<section xml:id="sec-shell-helpers">
|
||||||
<command>nix-shell</command>) and run <command>elm2nix.rb</command> inside
|
<title>Interactive shell helpers</title>
|
||||||
it. Place the resulting <filename>package.nix</filename> file into
|
|
||||||
<filename>packages/elm-reactor-elm.nix</filename>.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section xml:id="sec-shell-helpers">
|
|
||||||
|
|
||||||
<title>Interactive shell helpers</title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
Some packages provide the shell integration to be more useful. But
|
|
||||||
unlike other systems, nix doesn't have a standard share directory
|
|
||||||
location. This is why a bunch <command>PACKAGE-share</command>
|
|
||||||
scripts are shipped that print the location of the corresponding
|
|
||||||
shared folder.
|
|
||||||
|
|
||||||
Current list of such packages is as following:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Some packages provide the shell integration to be more useful. But unlike
|
||||||
|
other systems, nix doesn't have a standard share directory location. This is
|
||||||
|
why a bunch <command>PACKAGE-share</command> scripts are shipped that print
|
||||||
|
the location of the corresponding shared folder. Current list of such
|
||||||
|
packages is as following:
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
@@ -391,162 +345,175 @@ it. Place the resulting <filename>package.nix</filename> file into
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
E.g. <literal>autojump</literal> can then used in the .bashrc like this:
|
E.g. <literal>autojump</literal> can then used in the .bashrc like this:
|
||||||
<screen>
|
<screen>
|
||||||
source "$(autojump-share)/autojump.bash"
|
source "$(autojump-share)/autojump.bash"
|
||||||
</screen>
|
</screen>
|
||||||
</para>
|
</para>
|
||||||
|
</section>
|
||||||
|
<section xml:id="sec-steam">
|
||||||
|
<title>Steam</title>
|
||||||
|
|
||||||
</section>
|
<section xml:id="sec-steam-nix">
|
||||||
|
<title>Steam in Nix</title>
|
||||||
|
|
||||||
<section xml:id="sec-steam">
|
<para>
|
||||||
|
Steam is distributed as a <filename>.deb</filename> file, for now only as
|
||||||
|
an i686 package (the amd64 package only has documentation). When unpacked,
|
||||||
|
it has a script called <filename>steam</filename> that in ubuntu (their
|
||||||
|
target distro) would go to <filename>/usr/bin </filename>. When run for the
|
||||||
|
first time, this script copies some files to the user's home, which include
|
||||||
|
another script that is the ultimate responsible for launching the steam
|
||||||
|
binary, which is also in $HOME.
|
||||||
|
</para>
|
||||||
|
|
||||||
<title>Steam</title>
|
<para>
|
||||||
|
|
||||||
<section xml:id="sec-steam-nix">
|
|
||||||
|
|
||||||
<title>Steam in Nix</title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
Steam is distributed as a <filename>.deb</filename> file, for now only
|
|
||||||
as an i686 package (the amd64 package only has documentation).
|
|
||||||
When unpacked, it has a script called <filename>steam</filename> that
|
|
||||||
in ubuntu (their target distro) would go to <filename>/usr/bin
|
|
||||||
</filename>. When run for the first time, this script copies some
|
|
||||||
files to the user's home, which include another script that is the
|
|
||||||
ultimate responsible for launching the steam binary, which is also
|
|
||||||
in $HOME.
|
|
||||||
</para>
|
|
||||||
<para>
|
|
||||||
Nix problems and constraints:
|
Nix problems and constraints:
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>We don't have <filename>/bin/bash</filename> and many
|
<listitem>
|
||||||
scripts point there. Similarly for <filename>/usr/bin/python</filename>
|
<para>
|
||||||
.</para></listitem>
|
We don't have <filename>/bin/bash</filename> and many scripts point
|
||||||
<listitem><para>We don't have the dynamic loader in <filename>/lib
|
there. Similarly for <filename>/usr/bin/python</filename> .
|
||||||
</filename>.</para></listitem>
|
</para>
|
||||||
<listitem><para>The <filename>steam.sh</filename> script in $HOME can
|
</listitem>
|
||||||
not be patched, as it is checked and rewritten by steam.</para></listitem>
|
<listitem>
|
||||||
<listitem><para>The steam binary cannot be patched, it's also checked.</para></listitem>
|
<para>
|
||||||
</itemizedlist>
|
We don't have the dynamic loader in <filename>/lib </filename>.
|
||||||
</para>
|
</para>
|
||||||
<para>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The <filename>steam.sh</filename> script in $HOME can not be patched, as
|
||||||
|
it is checked and rewritten by steam.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The steam binary cannot be patched, it's also checked.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
The current approach to deploy Steam in NixOS is composing a FHS-compatible
|
The current approach to deploy Steam in NixOS is composing a FHS-compatible
|
||||||
chroot environment, as documented
|
chroot environment, as documented
|
||||||
<link xlink:href="http://sandervanderburg.blogspot.nl/2013/09/composing-fhs-compatible-chroot.html">here</link>.
|
<link xlink:href="http://sandervanderburg.blogspot.nl/2013/09/composing-fhs-compatible-chroot.html">here</link>.
|
||||||
This allows us to have binaries in the expected paths without disrupting the system,
|
This allows us to have binaries in the expected paths without disrupting
|
||||||
and to avoid patching them to work in a non FHS environment.
|
the system, and to avoid patching them to work in a non FHS environment.
|
||||||
</para>
|
</para>
|
||||||
|
</section>
|
||||||
|
|
||||||
</section>
|
<section xml:id="sec-steam-play">
|
||||||
|
<title>How to play</title>
|
||||||
|
|
||||||
<section xml:id="sec-steam-play">
|
<para>
|
||||||
|
|
||||||
<title>How to play</title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
For 64-bit systems it's important to have
|
For 64-bit systems it's important to have
|
||||||
<programlisting>hardware.opengl.driSupport32Bit = true;</programlisting>
|
<programlisting>hardware.opengl.driSupport32Bit = true;</programlisting>
|
||||||
in your <filename>/etc/nixos/configuration.nix</filename>. You'll also need
|
in your <filename>/etc/nixos/configuration.nix</filename>. You'll also need
|
||||||
<programlisting>hardware.pulseaudio.support32Bit = true;</programlisting>
|
<programlisting>hardware.pulseaudio.support32Bit = true;</programlisting>
|
||||||
if you are using PulseAudio - this will enable 32bit ALSA apps integration.
|
if you are using PulseAudio - this will enable 32bit ALSA apps integration.
|
||||||
To use the Steam controller, you need to add
|
To use the Steam controller, you need to add
|
||||||
<programlisting>services.udev.extraRules = ''
|
<programlisting>services.udev.extraRules = ''
|
||||||
SUBSYSTEM=="usb", ATTRS{idVendor}=="28de", MODE="0666"
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="28de", MODE="0666"
|
||||||
KERNEL=="uinput", MODE="0660", GROUP="users", OPTIONS+="static_node=uinput"
|
KERNEL=="uinput", MODE="0660", GROUP="users", OPTIONS+="static_node=uinput"
|
||||||
'';</programlisting>
|
'';</programlisting>
|
||||||
to your configuration.
|
to your configuration.
|
||||||
</para>
|
</para>
|
||||||
|
</section>
|
||||||
|
|
||||||
</section>
|
<section xml:id="sec-steam-troub">
|
||||||
|
<title>Troubleshooting</title>
|
||||||
<section xml:id="sec-steam-troub">
|
|
||||||
|
|
||||||
<title>Troubleshooting</title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
<variablelist>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
<variablelist>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>Steam fails to start. What do I do?</term>
|
<term>Steam fails to start. What do I do?</term>
|
||||||
<listitem><para>Try to run
|
<listitem>
|
||||||
<programlisting>strace steam</programlisting>
|
<para>
|
||||||
to see what is causing steam to fail.</para></listitem>
|
Try to run
|
||||||
|
<programlisting>strace steam</programlisting>
|
||||||
|
to see what is causing steam to fail.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>Using the FOSS Radeon or nouveau (nvidia) drivers</term>
|
<term>Using the FOSS Radeon or nouveau (nvidia) drivers</term>
|
||||||
<listitem><itemizedlist>
|
<listitem>
|
||||||
<listitem><para>The <literal>newStdcpp</literal> parameter
|
<itemizedlist>
|
||||||
was removed since NixOS 17.09 and should not be needed anymore.
|
<listitem>
|
||||||
</para></listitem>
|
<para>
|
||||||
|
The <literal>newStdcpp</literal> parameter was removed since NixOS
|
||||||
<listitem><para>
|
17.09 and should not be needed anymore.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
Steam ships statically linked with a version of libcrypto that
|
Steam ships statically linked with a version of libcrypto that
|
||||||
conflics with the one dynamically loaded by radeonsi_dri.so.
|
conflics with the one dynamically loaded by radeonsi_dri.so. If you
|
||||||
If you get the error
|
get the error
|
||||||
<programlisting>steam.sh: line 713: 7842 Segmentation fault (core dumped)</programlisting>
|
<programlisting>steam.sh: line 713: 7842 Segmentation fault (core dumped)</programlisting>
|
||||||
have a look at <link xlink:href="https://github.com/NixOS/nixpkgs/pull/20269">this pull request</link>.
|
have a look at
|
||||||
</para></listitem>
|
<link xlink:href="https://github.com/NixOS/nixpkgs/pull/20269">this
|
||||||
|
pull request</link>.
|
||||||
</itemizedlist></listitem></varlistentry>
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>Java</term>
|
<term>Java</term>
|
||||||
<listitem><orderedlist>
|
<listitem>
|
||||||
<listitem><para>
|
<orderedlist>
|
||||||
There is no java in steam chrootenv by default. If you get a message like
|
<listitem>
|
||||||
<programlisting>/home/foo/.local/share/Steam/SteamApps/common/towns/towns.sh: line 1: java: command not found</programlisting>
|
<para>
|
||||||
|
There is no java in steam chrootenv by default. If you get a message
|
||||||
|
like
|
||||||
|
<programlisting>/home/foo/.local/share/Steam/SteamApps/common/towns/towns.sh: line 1: java: command not found</programlisting>
|
||||||
You need to add
|
You need to add
|
||||||
<programlisting> steam.override { withJava = true; };</programlisting>
|
<programlisting> steam.override { withJava = true; };</programlisting>
|
||||||
to your configuration.
|
to your configuration.
|
||||||
</para></listitem>
|
</para>
|
||||||
</orderedlist></listitem></varlistentry>
|
</listitem>
|
||||||
|
</orderedlist>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
</variablelist>
|
||||||
|
</para>
|
||||||
|
</section>
|
||||||
|
|
||||||
</variablelist>
|
<section xml:id="sec-steam-run">
|
||||||
</para>
|
<title>steam-run</title>
|
||||||
|
|
||||||
</section>
|
<para>
|
||||||
|
The FHS-compatible chroot used for steam can also be used to run other
|
||||||
<section xml:id="sec-steam-run">
|
linux games that expect a FHS environment. To do it, add
|
||||||
|
|
||||||
<title>steam-run</title>
|
|
||||||
<para>
|
|
||||||
The FHS-compatible chroot used for steam can also be used to run
|
|
||||||
other linux games that expect a FHS environment.
|
|
||||||
To do it, add
|
|
||||||
<programlisting>pkgs.(steam.override {
|
<programlisting>pkgs.(steam.override {
|
||||||
nativeOnly = true;
|
nativeOnly = true;
|
||||||
newStdcpp = true;
|
newStdcpp = true;
|
||||||
}).run</programlisting>
|
}).run</programlisting>
|
||||||
to your configuration, rebuild, and run the game with
|
to your configuration, rebuild, and run the game with
|
||||||
<programlisting>steam-run ./foo</programlisting>
|
<programlisting>steam-run ./foo</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
<section xml:id="sec-emacs">
|
||||||
|
<title>Emacs</title>
|
||||||
|
|
||||||
</section>
|
<section xml:id="sec-emacs-config">
|
||||||
|
<title>Configuring Emacs</title>
|
||||||
|
|
||||||
</section>
|
<para>
|
||||||
|
|
||||||
<section xml:id="sec-emacs">
|
|
||||||
|
|
||||||
<title>Emacs</title>
|
|
||||||
|
|
||||||
<section xml:id="sec-emacs-config">
|
|
||||||
|
|
||||||
<title>Configuring Emacs</title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
The Emacs package comes with some extra helpers to make it easier to
|
The Emacs package comes with some extra helpers to make it easier to
|
||||||
configure. <varname>emacsWithPackages</varname> allows you to manage
|
configure. <varname>emacsWithPackages</varname> allows you to manage
|
||||||
packages from ELPA. This means that you will not have to install
|
packages from ELPA. This means that you will not have to install that
|
||||||
that packages from within Emacs. For instance, if you wanted to use
|
packages from within Emacs. For instance, if you wanted to use
|
||||||
<literal>company</literal>, <literal>counsel</literal>,
|
<literal>company</literal>, <literal>counsel</literal>,
|
||||||
<literal>flycheck</literal>, <literal>ivy</literal>,
|
<literal>flycheck</literal>, <literal>ivy</literal>,
|
||||||
<literal>magit</literal>, <literal>projectile</literal>, and
|
<literal>magit</literal>, <literal>projectile</literal>, and
|
||||||
<literal>use-package</literal> you could use this as a
|
<literal>use-package</literal> you could use this as a
|
||||||
<filename>~/.config/nixpkgs/config.nix</filename> override:
|
<filename>~/.config/nixpkgs/config.nix</filename> override:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
{
|
{
|
||||||
@@ -564,17 +531,17 @@ to your configuration, rebuild, and run the game with
|
|||||||
}
|
}
|
||||||
</screen>
|
</screen>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
You can install it like any other packages via <command>nix-env -iA
|
You can install it like any other packages via <command>nix-env -iA
|
||||||
myEmacs</command>. However, this will only install those packages.
|
myEmacs</command>. However, this will only install those packages. It will
|
||||||
It will not <literal>configure</literal> them for us. To do this, we
|
not <literal>configure</literal> them for us. To do this, we need to
|
||||||
need to provide a configuration file. Luckily, it is possible to do
|
provide a configuration file. Luckily, it is possible to do this from
|
||||||
this from within Nix! By modifying the above example, we can make
|
within Nix! By modifying the above example, we can make Emacs load a custom
|
||||||
Emacs load a custom config file. The key is to create a package that
|
config file. The key is to create a package that provide a
|
||||||
provide a <filename>default.el</filename> file in
|
<filename>default.el</filename> file in
|
||||||
<filename>/share/emacs/site-start/</filename>. Emacs knows to load
|
<filename>/share/emacs/site-start/</filename>. Emacs knows to load this
|
||||||
this file automatically when it starts.
|
file automatically when it starts.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
{
|
{
|
||||||
@@ -654,25 +621,24 @@ cp ${myEmacsConfig} $out/share/emacs/site-lisp/default.el
|
|||||||
}
|
}
|
||||||
</screen>
|
</screen>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
This provides a fairly full Emacs start file. It will load in
|
This provides a fairly full Emacs start file. It will load in addition to
|
||||||
addition to the user's presonal config. You can always disable it by
|
the user's presonal config. You can always disable it by passing
|
||||||
passing <command>-q</command> to the Emacs command.
|
<command>-q</command> to the Emacs command.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Sometimes <varname>emacsWithPackages</varname> is not enough, as
|
Sometimes <varname>emacsWithPackages</varname> is not enough, as this
|
||||||
this package set has some priorities imposed on packages (with
|
package set has some priorities imposed on packages (with the lowest
|
||||||
the lowest priority assigned to Melpa Unstable, and the highest for
|
priority assigned to Melpa Unstable, and the highest for packages manually
|
||||||
packages manually defined in
|
defined in <filename>pkgs/top-level/emacs-packages.nix</filename>). But you
|
||||||
<filename>pkgs/top-level/emacs-packages.nix</filename>). But you
|
|
||||||
can't control this priorities when some package is installed as a
|
can't control this priorities when some package is installed as a
|
||||||
dependency. You can override it on per-package-basis, providing all
|
dependency. You can override it on per-package-basis, providing all the
|
||||||
the required dependencies manually - but it's tedious and there is
|
required dependencies manually - but it's tedious and there is always a
|
||||||
always a possibility that an unwanted dependency will sneak in
|
possibility that an unwanted dependency will sneak in through some other
|
||||||
through some other package. To completely override such a package
|
package. To completely override such a package you can use
|
||||||
you can use <varname>overrideScope</varname>.
|
<varname>overrideScope</varname>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
overrides = super: self: rec {
|
overrides = super: self: rec {
|
||||||
@@ -685,34 +651,34 @@ overrides = super: self: rec {
|
|||||||
dante
|
dante
|
||||||
])
|
])
|
||||||
</screen>
|
</screen>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
<section xml:id="sec-weechat">
|
||||||
|
<title>Weechat</title>
|
||||||
|
|
||||||
</section>
|
<para>
|
||||||
|
Weechat can be configured to include your choice of plugins, reducing its
|
||||||
</section>
|
closure size from the default configuration which includes all available
|
||||||
|
plugins. To make use of this functionality, install an expression that
|
||||||
<section xml:id="sec-weechat">
|
overrides its configuration such as
|
||||||
<title>Weechat</title>
|
|
||||||
<para>
|
|
||||||
Weechat can be configured to include your choice of plugins, reducing its
|
|
||||||
closure size from the default configuration which includes all available
|
|
||||||
plugins. To make use of this functionality, install an expression that
|
|
||||||
overrides its configuration such as
|
|
||||||
<programlisting>weechat.override {configure = {availablePlugins, ...}: {
|
<programlisting>weechat.override {configure = {availablePlugins, ...}: {
|
||||||
plugins = with availablePlugins; [ python perl ];
|
plugins = with availablePlugins; [ python perl ];
|
||||||
}
|
}
|
||||||
}</programlisting>
|
}</programlisting>
|
||||||
</para>
|
</para>
|
||||||
<para>
|
|
||||||
The plugins currently available are <literal>python</literal>,
|
<para>
|
||||||
<literal>perl</literal>, <literal>ruby</literal>, <literal>guile</literal>,
|
The plugins currently available are <literal>python</literal>,
|
||||||
<literal>tcl</literal> and <literal>lua</literal>.
|
<literal>perl</literal>, <literal>ruby</literal>, <literal>guile</literal>,
|
||||||
</para>
|
<literal>tcl</literal> and <literal>lua</literal>.
|
||||||
<para>
|
</para>
|
||||||
The python plugin allows the addition of extra libraries. For instance,
|
|
||||||
the <literal>inotify.py</literal> script in weechat-scripts requires
|
<para>
|
||||||
D-Bus or libnotify, and the <literal>fish.py</literal> script requires
|
The python plugin allows the addition of extra libraries. For instance, the
|
||||||
pycrypto. To use these scripts, use the <literal>python</literal>
|
<literal>inotify.py</literal> script in weechat-scripts requires D-Bus or
|
||||||
plugin's <literal>withPackages</literal> attribute:
|
libnotify, and the <literal>fish.py</literal> script requires pycrypto. To
|
||||||
|
use these scripts, use the <literal>python</literal> plugin's
|
||||||
|
<literal>withPackages</literal> attribute:
|
||||||
<programlisting>weechat.override { configure = {availablePlugins, ...}: {
|
<programlisting>weechat.override { configure = {availablePlugins, ...}: {
|
||||||
plugins = with availablePlugins; [
|
plugins = with availablePlugins; [
|
||||||
(python.withPackages (ps: with ps; [ pycrypto python-dbus ]))
|
(python.withPackages (ps: with ps; [ pycrypto python-dbus ]))
|
||||||
@@ -720,16 +686,17 @@ plugin's <literal>withPackages</literal> attribute:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
<para>
|
|
||||||
In order to also keep all default plugins installed, it is possible to use
|
<para>
|
||||||
the following method:
|
In order to also keep all default plugins installed, it is possible to use
|
||||||
|
the following method:
|
||||||
<programlisting>weechat.override { configure = { availablePlugins, ... }: {
|
<programlisting>weechat.override { configure = { availablePlugins, ... }: {
|
||||||
plugins = builtins.attrValues (availablePlugins // {
|
plugins = builtins.attrValues (availablePlugins // {
|
||||||
python = availablePlugins.python.withPackages (ps: with ps; [ pycrypto python-dbus ]);
|
python = availablePlugins.python.withPackages (ps: with ps; [ pycrypto python-dbus ]);
|
||||||
});
|
});
|
||||||
}; }
|
}; }
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
+32
-40
@@ -1,27 +1,25 @@
|
|||||||
<chapter xmlns="http://docbook.org/ns/docbook"
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="chap-platform-nodes">
|
xml:id="chap-platform-nodes">
|
||||||
|
<title>Platform Notes</title>
|
||||||
|
<section xml:id="sec-darwin">
|
||||||
|
<title>Darwin (macOS)</title>
|
||||||
|
|
||||||
<title>Platform Notes</title>
|
|
||||||
|
|
||||||
<section xml:id="sec-darwin">
|
|
||||||
|
|
||||||
<title>Darwin (macOS)</title>
|
|
||||||
<para>Some common issues when packaging software for darwin:</para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
<para>
|
||||||
The darwin <literal>stdenv</literal> uses clang instead of gcc.
|
Some common issues when packaging software for darwin:
|
||||||
When referring to the compiler <varname>$CC</varname> or <command>cc</command>
|
|
||||||
will work in both cases. Some builds hardcode gcc/g++ in their
|
|
||||||
build scripts, that can usually be fixed with using something
|
|
||||||
like <literal>makeFlags = [ "CC=cc" ];</literal> or by patching
|
|
||||||
the build scripts.
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<programlisting>
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The darwin <literal>stdenv</literal> uses clang instead of gcc. When
|
||||||
|
referring to the compiler <varname>$CC</varname> or <command>cc</command>
|
||||||
|
will work in both cases. Some builds hardcode gcc/g++ in their build
|
||||||
|
scripts, that can usually be fixed with using something like
|
||||||
|
<literal>makeFlags = [ "CC=cc" ];</literal> or by patching the build
|
||||||
|
scripts.
|
||||||
|
</para>
|
||||||
|
<programlisting>
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "libfoo-1.2.3";
|
name = "libfoo-1.2.3";
|
||||||
# ...
|
# ...
|
||||||
@@ -31,18 +29,16 @@
|
|||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
On darwin libraries are linked using absolute paths, libraries
|
On darwin libraries are linked using absolute paths, libraries are
|
||||||
are resolved by their <literal>install_name</literal> at link
|
resolved by their <literal>install_name</literal> at link time. Sometimes
|
||||||
time. Sometimes packages won't set this correctly causing the
|
packages won't set this correctly causing the library lookups to fail at
|
||||||
library lookups to fail at runtime. This can be fixed by adding
|
runtime. This can be fixed by adding extra linker flags or by running
|
||||||
extra linker flags or by running <command>install_name_tool -id</command>
|
<command>install_name_tool -id</command> during the
|
||||||
during the <function>fixupPhase</function>.
|
<function>fixupPhase</function>.
|
||||||
</para>
|
</para>
|
||||||
|
<programlisting>
|
||||||
<programlisting>
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "libfoo-1.2.3";
|
name = "libfoo-1.2.3";
|
||||||
# ...
|
# ...
|
||||||
@@ -50,16 +46,15 @@
|
|||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Some packages assume xcode is available and use <command>xcrun</command>
|
Some packages assume xcode is available and use <command>xcrun</command>
|
||||||
to resolve build tools like <command>clang</command>, etc.
|
to resolve build tools like <command>clang</command>, etc. This causes
|
||||||
This causes errors like <code>xcode-select: error: no developer tools were found at '/Applications/Xcode.app'</code>
|
errors like <code>xcode-select: error: no developer tools were found at
|
||||||
while the build doesn't actually depend on xcode.
|
'/Applications/Xcode.app'</code> while the build doesn't actually depend
|
||||||
|
on xcode.
|
||||||
</para>
|
</para>
|
||||||
|
<programlisting>
|
||||||
<programlisting>
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "libfoo-1.2.3";
|
name = "libfoo-1.2.3";
|
||||||
# ...
|
# ...
|
||||||
@@ -69,15 +64,12 @@
|
|||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The package <literal>xcbuild</literal> can be used to build projects
|
The package <literal>xcbuild</literal> can be used to build projects that
|
||||||
that really depend on Xcode, however projects that build some kind of
|
really depend on Xcode, however projects that build some kind of graphical
|
||||||
graphical interface won't work without using Xcode in an impure way.
|
interface won't work without using Xcode in an impure way.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
</itemizedlist>
|
</section>
|
||||||
</section>
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
+146
-150
@@ -1,223 +1,219 @@
|
|||||||
<chapter xmlns="http://docbook.org/ns/docbook"
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="chap-quick-start">
|
xml:id="chap-quick-start">
|
||||||
|
<title>Quick Start to Adding a Package</title>
|
||||||
<title>Quick Start to Adding a Package</title>
|
<para>
|
||||||
|
To add a package to Nixpkgs:
|
||||||
<para>To add a package to Nixpkgs:
|
<orderedlist>
|
||||||
|
|
||||||
<orderedlist>
|
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Checkout the Nixpkgs source tree:
|
<para>
|
||||||
|
Checkout the Nixpkgs source tree:
|
||||||
<screen>
|
<screen>
|
||||||
$ git clone git://github.com/NixOS/nixpkgs.git
|
$ git clone git://github.com/NixOS/nixpkgs.git
|
||||||
$ cd nixpkgs</screen>
|
$ cd nixpkgs</screen>
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Find a good place in the Nixpkgs tree to add the Nix
|
<para>
|
||||||
expression for your package. For instance, a library package
|
Find a good place in the Nixpkgs tree to add the Nix expression for your
|
||||||
typically goes into
|
package. For instance, a library package typically goes into
|
||||||
<filename>pkgs/development/libraries/<replaceable>pkgname</replaceable></filename>,
|
<filename>pkgs/development/libraries/<replaceable>pkgname</replaceable></filename>,
|
||||||
while a web browser goes into
|
while a web browser goes into
|
||||||
<filename>pkgs/applications/networking/browsers/<replaceable>pkgname</replaceable></filename>.
|
<filename>pkgs/applications/networking/browsers/<replaceable>pkgname</replaceable></filename>.
|
||||||
See <xref linkend="sec-organisation" /> for some hints on the tree
|
See <xref linkend="sec-organisation" /> for some hints on the tree
|
||||||
organisation. Create a directory for your package, e.g.
|
organisation. Create a directory for your package, e.g.
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ mkdir pkgs/development/libraries/libfoo</screen>
|
$ mkdir pkgs/development/libraries/libfoo</screen>
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>In the package directory, create a Nix expression — a piece
|
<para>
|
||||||
of code that describes how to build the package. In this case, it
|
In the package directory, create a Nix expression — a piece of code that
|
||||||
should be a <emphasis>function</emphasis> that is called with the
|
describes how to build the package. In this case, it should be a
|
||||||
package dependencies as arguments, and returns a build of the
|
<emphasis>function</emphasis> that is called with the package dependencies
|
||||||
package in the Nix store. The expression should usually be called
|
as arguments, and returns a build of the package in the Nix store. The
|
||||||
<filename>default.nix</filename>.
|
expression should usually be called <filename>default.nix</filename>.
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ emacs pkgs/development/libraries/libfoo/default.nix
|
$ emacs pkgs/development/libraries/libfoo/default.nix
|
||||||
$ git add pkgs/development/libraries/libfoo/default.nix</screen>
|
$ git add pkgs/development/libraries/libfoo/default.nix</screen>
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>You can have a look at the existing Nix expressions under
|
You can have a look at the existing Nix expressions under
|
||||||
<filename>pkgs/</filename> to see how it’s done. Here are some
|
<filename>pkgs/</filename> to see how it’s done. Here are some good
|
||||||
good ones:
|
ones:
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>GNU Hello: <link
|
<para>
|
||||||
|
GNU Hello:
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/misc/hello/default.nix"><filename>pkgs/applications/misc/hello/default.nix</filename></link>.
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/misc/hello/default.nix"><filename>pkgs/applications/misc/hello/default.nix</filename></link>.
|
||||||
Trivial package, which specifies some <varname>meta</varname>
|
Trivial package, which specifies some <varname>meta</varname>
|
||||||
attributes which is good practice.</para>
|
attributes which is good practice.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>GNU cpio: <link
|
<para>
|
||||||
|
GNU cpio:
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/archivers/cpio/default.nix"><filename>pkgs/tools/archivers/cpio/default.nix</filename></link>.
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/archivers/cpio/default.nix"><filename>pkgs/tools/archivers/cpio/default.nix</filename></link>.
|
||||||
Also a simple package. The generic builder in
|
Also a simple package. The generic builder in <varname>stdenv</varname>
|
||||||
<varname>stdenv</varname> does everything for you. It has
|
does everything for you. It has no dependencies beyond
|
||||||
no dependencies beyond <varname>stdenv</varname>.</para>
|
<varname>stdenv</varname>.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>GNU Multiple Precision arithmetic library (GMP): <link
|
<para>
|
||||||
|
GNU Multiple Precision arithmetic library (GMP):
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/libraries/gmp/5.1.x.nix"><filename>pkgs/development/libraries/gmp/5.1.x.nix</filename></link>.
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/libraries/gmp/5.1.x.nix"><filename>pkgs/development/libraries/gmp/5.1.x.nix</filename></link>.
|
||||||
Also done by the generic builder, but has a dependency on
|
Also done by the generic builder, but has a dependency on
|
||||||
<varname>m4</varname>.</para>
|
<varname>m4</varname>.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Pan, a GTK-based newsreader: <link
|
<para>
|
||||||
|
Pan, a GTK-based newsreader:
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/networking/newsreaders/pan/default.nix"><filename>pkgs/applications/networking/newsreaders/pan/default.nix</filename></link>.
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/networking/newsreaders/pan/default.nix"><filename>pkgs/applications/networking/newsreaders/pan/default.nix</filename></link>.
|
||||||
Has an optional dependency on <varname>gtkspell</varname>,
|
Has an optional dependency on <varname>gtkspell</varname>, which is
|
||||||
which is only built if <varname>spellCheck</varname> is
|
only built if <varname>spellCheck</varname> is <literal>true</literal>.
|
||||||
<literal>true</literal>.</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Apache HTTPD: <link
|
<para>
|
||||||
|
Apache HTTPD:
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/servers/http/apache-httpd/2.4.nix"><filename>pkgs/servers/http/apache-httpd/2.4.nix</filename></link>.
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/servers/http/apache-httpd/2.4.nix"><filename>pkgs/servers/http/apache-httpd/2.4.nix</filename></link>.
|
||||||
A bunch of optional features, variable substitutions in the
|
A bunch of optional features, variable substitutions in the configure
|
||||||
configure flags, a post-install hook, and miscellaneous
|
flags, a post-install hook, and miscellaneous hackery.
|
||||||
hackery.</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Thunderbird: <link
|
<para>
|
||||||
|
Thunderbird:
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/networking/mailreaders/thunderbird/default.nix"><filename>pkgs/applications/networking/mailreaders/thunderbird/default.nix</filename></link>.
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/networking/mailreaders/thunderbird/default.nix"><filename>pkgs/applications/networking/mailreaders/thunderbird/default.nix</filename></link>.
|
||||||
Lots of dependencies.</para>
|
Lots of dependencies.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>JDiskReport, a Java utility: <link
|
<para>
|
||||||
|
JDiskReport, a Java utility:
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/misc/jdiskreport/default.nix"><filename>pkgs/tools/misc/jdiskreport/default.nix</filename></link>
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/misc/jdiskreport/default.nix"><filename>pkgs/tools/misc/jdiskreport/default.nix</filename></link>
|
||||||
(and the <link
|
(and the
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/misc/jdiskreport/builder.sh">builder</link>).
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/misc/jdiskreport/builder.sh">builder</link>).
|
||||||
Nixpkgs doesn’t have a decent <varname>stdenv</varname> for
|
Nixpkgs doesn’t have a decent <varname>stdenv</varname> for Java yet
|
||||||
Java yet so this is pretty ad-hoc.</para>
|
so this is pretty ad-hoc.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>XML::Simple, a Perl module: <link
|
<para>
|
||||||
|
XML::Simple, a Perl module:
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/perl-packages.nix"><filename>pkgs/top-level/perl-packages.nix</filename></link>
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/perl-packages.nix"><filename>pkgs/top-level/perl-packages.nix</filename></link>
|
||||||
(search for the <varname>XMLSimple</varname> attribute).
|
(search for the <varname>XMLSimple</varname> attribute). Most Perl
|
||||||
Most Perl modules are so simple to build that they are
|
modules are so simple to build that they are defined directly in
|
||||||
defined directly in <filename>perl-packages.nix</filename>;
|
<filename>perl-packages.nix</filename>; no need to make a separate file
|
||||||
no need to make a separate file for them.</para>
|
for them.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Adobe Reader: <link
|
<para>
|
||||||
|
Adobe Reader:
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/misc/adobe-reader/default.nix"><filename>pkgs/applications/misc/adobe-reader/default.nix</filename></link>.
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/misc/adobe-reader/default.nix"><filename>pkgs/applications/misc/adobe-reader/default.nix</filename></link>.
|
||||||
Shows how binary-only packages can be supported. In
|
Shows how binary-only packages can be supported. In particular the
|
||||||
particular the <link
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/misc/adobe-reader/builder.sh">builder</link>
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/misc/adobe-reader/builder.sh">builder</link>
|
||||||
uses <command>patchelf</command> to set the RUNPATH and ELF
|
uses <command>patchelf</command> to set the RUNPATH and ELF interpreter
|
||||||
interpreter of the executables so that the right libraries
|
of the executables so that the right libraries are found at runtime.
|
||||||
are found at runtime.</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
</listitem>
|
||||||
<para>Some notes:
|
</itemizedlist>
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
Some notes:
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>All <varname linkend="chap-meta">meta</varname>
|
<para>
|
||||||
attributes are optional, but it’s still a good idea to
|
All <varname linkend="chap-meta">meta</varname> attributes are
|
||||||
provide at least the <varname>description</varname>,
|
optional, but it’s still a good idea to provide at least the
|
||||||
<varname>homepage</varname> and <varname
|
<varname>description</varname>, <varname>homepage</varname> and
|
||||||
linkend="sec-meta-license">license</varname>.</para>
|
<varname
|
||||||
</listitem>
|
linkend="sec-meta-license">license</varname>.
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>You can use <command>nix-prefetch-url</command> (or similar nix-prefetch-git, etc)
|
|
||||||
<replaceable>url</replaceable> to get the SHA-256 hash of
|
|
||||||
source distributions. There are similar commands as <command>nix-prefetch-git</command> and
|
|
||||||
<command>nix-prefetch-hg</command> available in <literal>nix-prefetch-scripts</literal> package.</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>A list of schemes for <literal>mirror://</literal>
|
|
||||||
URLs can be found in <link
|
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/build-support/fetchurl/mirrors.nix"><filename>pkgs/build-support/fetchurl/mirrors.nix</filename></link>.</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>The exact syntax and semantics of the Nix expression
|
|
||||||
language, including the built-in function, are described in the
|
|
||||||
Nix manual in the <link
|
|
||||||
xlink:href="http://hydra.nixos.org/job/nix/trunk/tarball/latest/download-by-type/doc/manual/#chap-writing-nix-expressions">chapter
|
|
||||||
on writing Nix expressions</link>.</para>
|
|
||||||
|
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Add a call to the function defined in the previous step to
|
<para>
|
||||||
|
You can use <command>nix-prefetch-url</command> (or similar
|
||||||
|
nix-prefetch-git, etc) <replaceable>url</replaceable> to get the
|
||||||
|
SHA-256 hash of source distributions. There are similar commands as
|
||||||
|
<command>nix-prefetch-git</command> and
|
||||||
|
<command>nix-prefetch-hg</command> available in
|
||||||
|
<literal>nix-prefetch-scripts</literal> package.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
A list of schemes for <literal>mirror://</literal> URLs can be found in
|
||||||
|
<link
|
||||||
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/build-support/fetchurl/mirrors.nix"><filename>pkgs/build-support/fetchurl/mirrors.nix</filename></link>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
The exact syntax and semantics of the Nix expression language, including
|
||||||
|
the built-in function, are described in the Nix manual in the
|
||||||
|
<link
|
||||||
|
xlink:href="http://hydra.nixos.org/job/nix/trunk/tarball/latest/download-by-type/doc/manual/#chap-writing-nix-expressions">chapter
|
||||||
|
on writing Nix expressions</link>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Add a call to the function defined in the previous step to
|
||||||
<link
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/all-packages.nix"><filename>pkgs/top-level/all-packages.nix</filename></link>
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/all-packages.nix"><filename>pkgs/top-level/all-packages.nix</filename></link>
|
||||||
with some descriptive name for the variable,
|
with some descriptive name for the variable, e.g.
|
||||||
e.g. <varname>libfoo</varname>.
|
<varname>libfoo</varname>.
|
||||||
|
<screen>
|
||||||
<screen>
|
|
||||||
$ emacs pkgs/top-level/all-packages.nix</screen>
|
$ emacs pkgs/top-level/all-packages.nix</screen>
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>The attributes in that file are sorted by category (like
|
The attributes in that file are sorted by category (like “Development /
|
||||||
“Development / Libraries”) that more-or-less correspond to the
|
Libraries”) that more-or-less correspond to the directory structure of
|
||||||
directory structure of Nixpkgs, and then by attribute name.</para>
|
Nixpkgs, and then by attribute name.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>To test whether the package builds, run the following command
|
<para>
|
||||||
from the root of the nixpkgs source tree:
|
To test whether the package builds, run the following command from the
|
||||||
|
root of the nixpkgs source tree:
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-build -A libfoo</screen>
|
$ nix-build -A libfoo</screen>
|
||||||
|
where <varname>libfoo</varname> should be the variable name defined in the
|
||||||
where <varname>libfoo</varname> should be the variable name
|
previous step. You may want to add the flag <option>-K</option> to keep
|
||||||
defined in the previous step. You may want to add the flag
|
the temporary build directory in case something fails. If the build
|
||||||
<option>-K</option> to keep the temporary build directory in case
|
succeeds, a symlink <filename>./result</filename> to the package in the
|
||||||
something fails. If the build succeeds, a symlink
|
Nix store is created.
|
||||||
<filename>./result</filename> to the package in the Nix store is
|
|
||||||
created.</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>If you want to install the package into your profile
|
|
||||||
(optional), do
|
|
||||||
|
|
||||||
<screen>
|
|
||||||
$ nix-env -f . -iA libfoo</screen>
|
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Optionally commit the new package and open a pull request, or send a patch to
|
<para>
|
||||||
<literal>https://groups.google.com/forum/#!forum/nix-devel</literal>.</para>
|
If you want to install the package into your profile (optional), do
|
||||||
|
<screen>
|
||||||
|
$ nix-env -f . -iA libfoo</screen>
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
</orderedlist>
|
Optionally commit the new package and open a pull request, or send a patch
|
||||||
|
to <literal>https://groups.google.com/forum/#!forum/nix-devel</literal>.
|
||||||
</para>
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</orderedlist>
|
||||||
|
</para>
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
+673
-606
File diff suppressed because it is too large
Load Diff
+422
-209
@@ -3,93 +3,146 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-reviewing-contributions">
|
xml:id="sec-reviewing-contributions">
|
||||||
|
<title>Reviewing contributions</title>
|
||||||
<title>Reviewing contributions</title>
|
<warning>
|
||||||
|
<para>
|
||||||
<warning>
|
The following section is a draft and reviewing policy is still being
|
||||||
<para>The following section is a draft and reviewing policy is still being
|
discussed.
|
||||||
discussed.</para>
|
</para>
|
||||||
</warning>
|
</warning>
|
||||||
|
<para>
|
||||||
<para>The nixpkgs projects receives a fairly high number of contributions via
|
The nixpkgs projects receives a fairly high number of contributions via
|
||||||
GitHub pull-requests. Reviewing and approving these is an important task and a
|
GitHub pull-requests. Reviewing and approving these is an important task and
|
||||||
way to contribute to the project.</para>
|
a way to contribute to the project.
|
||||||
|
</para>
|
||||||
<para>The high change rate of nixpkgs make any pull request that is open for
|
<para>
|
||||||
long enough subject to conflicts that will require extra work from the
|
The high change rate of nixpkgs make any pull request that is open for long
|
||||||
submitter or the merger. Reviewing pull requests in a timely manner and being
|
enough subject to conflicts that will require extra work from the submitter
|
||||||
|
or the merger. Reviewing pull requests in a timely manner and being
|
||||||
responsive to the comments is the key to avoid these. GitHub provides sort
|
responsive to the comments is the key to avoid these. GitHub provides sort
|
||||||
filters that can be used to see the <link
|
filters that can be used to see the
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-desc">most
|
xlink:href="https://github.com/NixOS/nixpkgs/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-desc">most
|
||||||
recently</link> and the <link
|
recently</link> and the
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-asc">least
|
xlink:href="https://github.com/NixOS/nixpkgs/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-asc">least
|
||||||
recently</link> updated pull-requests.
|
recently</link> updated pull-requests. We highly encourage looking at
|
||||||
We highly encourage looking at <link xlink:href="https://github.com/NixOS/nixpkgs/pulls?q=is%3Apr+is%3Aopen+review%3Anone+status%3Asuccess+-label%3A%222.status%3A+work-in-progress%22+no%3Aproject+no%3Aassignee+no%3Amilestone">
|
<link xlink:href="https://github.com/NixOS/nixpkgs/pulls?q=is%3Apr+is%3Aopen+review%3Anone+status%3Asuccess+-label%3A%222.status%3A+work-in-progress%22+no%3Aproject+no%3Aassignee+no%3Amilestone">
|
||||||
this list of ready to merge, unreviewed pull requests</link>.</para>
|
this list of ready to merge, unreviewed pull requests</link>.
|
||||||
|
</para>
|
||||||
<para>When reviewing a pull request, please always be nice and polite.
|
<para>
|
||||||
|
When reviewing a pull request, please always be nice and polite.
|
||||||
Controversial changes can lead to controversial opinions, but it is important
|
Controversial changes can lead to controversial opinions, but it is important
|
||||||
to respect every community members and their work.</para>
|
to respect every community members and their work.
|
||||||
|
</para>
|
||||||
<para>GitHub provides reactions, they are a simple and quick way to provide
|
<para>
|
||||||
|
GitHub provides reactions, they are a simple and quick way to provide
|
||||||
feedback to pull-requests or any comments. The thumb-down reaction should be
|
feedback to pull-requests or any comments. The thumb-down reaction should be
|
||||||
used with care and if possible accompanied with some explanations so the
|
used with care and if possible accompanied with some explanations so the
|
||||||
submitter has directions to improve his contribution.</para>
|
submitter has directions to improve his contribution.
|
||||||
|
</para>
|
||||||
<para>Pull-requests reviews should include a list of what has been reviewed in a
|
<para>
|
||||||
comment, so other reviewers and mergers can know the state of the
|
Pull-requests reviews should include a list of what has been reviewed in a
|
||||||
review.</para>
|
comment, so other reviewers and mergers can know the state of the review.
|
||||||
|
</para>
|
||||||
<para>All the review template samples provided in this section are generic and
|
<para>
|
||||||
|
All the review template samples provided in this section are generic and
|
||||||
meant as examples. Their usage is optional and the reviewer is free to adapt
|
meant as examples. Their usage is optional and the reviewer is free to adapt
|
||||||
them to his liking.</para>
|
them to his liking.
|
||||||
|
</para>
|
||||||
|
<section>
|
||||||
|
<title>Package updates</title>
|
||||||
|
|
||||||
<section><title>Package updates</title>
|
<para>
|
||||||
|
A package update is the most trivial and common type of pull-request. These
|
||||||
|
pull-requests mainly consist in updating the version part of the package
|
||||||
|
name and the source hash.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>A package update is the most trivial and common type of pull-request.
|
<para>
|
||||||
These pull-requests mainly consist in updating the version part of the package
|
It can happen that non trivial updates include patches or more complex
|
||||||
name and the source hash.</para>
|
changes.
|
||||||
<para>It can happen that non trivial updates include patches or more complex
|
</para>
|
||||||
changes.</para>
|
|
||||||
|
|
||||||
<para>Reviewing process:</para>
|
<para>
|
||||||
|
Reviewing process:
|
||||||
|
</para>
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem><para>Add labels to the pull-request. (Requires commit
|
|
||||||
rights)</para>
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para><literal>8.has: package (update)</literal> and any topic
|
<listitem>
|
||||||
label that fit the updated package.</para></listitem>
|
<para>
|
||||||
|
Add labels to the pull-request. (Requires commit rights)
|
||||||
|
</para>
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<literal>8.has: package (update)</literal> and any topic label that fit
|
||||||
|
the updated package.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Ensure that the package versioning is fitting the
|
<listitem>
|
||||||
guidelines.</para></listitem>
|
<para>
|
||||||
<listitem><para>Ensure that the commit text is fitting the
|
Ensure that the package versioning is fitting the guidelines.
|
||||||
guidelines.</para></listitem>
|
</para>
|
||||||
<listitem><para>Ensure that the package maintainers are notified.</para>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Ensure that the commit text is fitting the guidelines.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Ensure that the package maintainers are notified.
|
||||||
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>mention-bot usually notify GitHub users based on the
|
<listitem>
|
||||||
submitted changes, but it can happen that it misses some of the
|
<para>
|
||||||
package maintainers.</para></listitem>
|
mention-bot usually notify GitHub users based on the submitted changes,
|
||||||
|
but it can happen that it misses some of the package maintainers.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Ensure that the meta field contains correct
|
<listitem>
|
||||||
information.</para>
|
<para>
|
||||||
|
Ensure that the meta field contains correct information.
|
||||||
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>License can change with version updates, so it should be
|
<listitem>
|
||||||
checked to be fitting upstream license.</para></listitem>
|
<para>
|
||||||
<listitem><para>If the package has no maintainer, a maintainer must be
|
License can change with version updates, so it should be checked to be
|
||||||
set. This can be the update submitter or a community member that
|
fitting upstream license.
|
||||||
accepts to take maintainership of the package.</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
If the package has no maintainer, a maintainer must be set. This can be
|
||||||
|
the update submitter or a community member that accepts to take
|
||||||
|
maintainership of the package.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Ensure that the code contains no typos.</para></listitem>
|
<listitem>
|
||||||
<listitem><para>Building the package locally.</para>
|
<para>
|
||||||
|
Ensure that the code contains no typos.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Building the package locally.
|
||||||
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>Pull-requests are often targeted to the master or staging
|
<listitem>
|
||||||
branch so building the pull-request locally as it is submitted can
|
<para>
|
||||||
trigger a large amount of source builds.</para>
|
Pull-requests are often targeted to the master or staging branch so
|
||||||
<para>It is possible to rebase the changes on nixos-unstable or
|
building the pull-request locally as it is submitted can trigger a large
|
||||||
|
amount of source builds.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
It is possible to rebase the changes on nixos-unstable or
|
||||||
nixpkgs-unstable for easier review by running the following commands
|
nixpkgs-unstable for easier review by running the following commands
|
||||||
from a nixpkgs clone.
|
from a nixpkgs clone.
|
||||||
<screen>
|
<screen>
|
||||||
@@ -102,41 +155,54 @@ $ git rebase --onto nixos-unstable BASEBRANCH FETCH_HEAD <co
|
|||||||
</screen>
|
</screen>
|
||||||
<calloutlist>
|
<calloutlist>
|
||||||
<callout arearefs='reviewing-rebase-1'>
|
<callout arearefs='reviewing-rebase-1'>
|
||||||
<para>This should be done only once to be able to fetch channel
|
<para>
|
||||||
branches from the nixpkgs-channels repository.</para>
|
This should be done only once to be able to fetch channel branches
|
||||||
|
from the nixpkgs-channels repository.
|
||||||
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
<callout arearefs='reviewing-rebase-2'>
|
<callout arearefs='reviewing-rebase-2'>
|
||||||
<para>Fetching the nixos-unstable branch.</para>
|
<para>
|
||||||
|
Fetching the nixos-unstable branch.
|
||||||
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
<callout arearefs='reviewing-rebase-3'>
|
<callout arearefs='reviewing-rebase-3'>
|
||||||
<para>Fetching the pull-request changes, <varname>PRNUMBER</varname>
|
<para>
|
||||||
is the number at the end of the pull-request title and
|
Fetching the pull-request changes, <varname>PRNUMBER</varname> is the
|
||||||
<varname>BASEBRANCH</varname> the base branch of the
|
number at the end of the pull-request title and
|
||||||
pull-request.</para>
|
<varname>BASEBRANCH</varname> the base branch of the pull-request.
|
||||||
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
<callout arearefs='reviewing-rebase-4'>
|
<callout arearefs='reviewing-rebase-4'>
|
||||||
<para>Rebasing the pull-request changes to the nixos-unstable
|
<para>
|
||||||
branch.</para>
|
Rebasing the pull-request changes to the nixos-unstable branch.
|
||||||
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
</calloutlist>
|
</calloutlist>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>The <link xlink:href="https://github.com/madjar/nox">nox</link>
|
<para>
|
||||||
tool can be used to review a pull-request content in a single command.
|
The <link xlink:href="https://github.com/madjar/nox">nox</link> tool can
|
||||||
It doesn't rebase on a channel branch so it might trigger multiple
|
be used to review a pull-request content in a single command. It doesn't
|
||||||
source builds. <varname>PRNUMBER</varname> should be replaced by the
|
rebase on a channel branch so it might trigger multiple source builds.
|
||||||
number at the end of the pull-request title.</para>
|
<varname>PRNUMBER</varname> should be replaced by the number at the end
|
||||||
|
of the pull-request title.
|
||||||
|
</para>
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-shell -p nox --run "nox-review -k pr PRNUMBER"
|
$ nix-shell -p nox --run "nox-review -k pr PRNUMBER"
|
||||||
</screen>
|
</screen>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Running every binary.</para></listitem>
|
<listitem>
|
||||||
</itemizedlist>
|
<para>
|
||||||
|
Running every binary.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
|
||||||
<example><title>Sample template for a package update review</title>
|
<example>
|
||||||
|
<title>Sample template for a package update review</title>
|
||||||
<screen>
|
<screen>
|
||||||
##### Reviewed points
|
##### Reviewed points
|
||||||
|
|
||||||
@@ -150,55 +216,105 @@ $ nix-shell -p nox --run "nox-review -k pr PRNUMBER"
|
|||||||
|
|
||||||
##### Comments
|
##### Comments
|
||||||
|
|
||||||
</screen></example>
|
</screen>
|
||||||
</section>
|
</example>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<title>New packages</title>
|
||||||
|
|
||||||
<section><title>New packages</title>
|
<para>
|
||||||
|
New packages are a common type of pull-requests. These pull requests
|
||||||
|
consists in adding a new nix-expression for a package.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>New packages are a common type of pull-requests. These pull requests
|
<para>
|
||||||
consists in adding a new nix-expression for a package.</para>
|
Reviewing process:
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>Reviewing process:</para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem><para>Add labels to the pull-request. (Requires commit
|
|
||||||
rights)</para>
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para><literal>8.has: package (new)</literal> and any topic
|
<listitem>
|
||||||
label that fit the new package.</para></listitem>
|
<para>
|
||||||
|
Add labels to the pull-request. (Requires commit rights)
|
||||||
|
</para>
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<literal>8.has: package (new)</literal> and any topic label that fit the
|
||||||
|
new package.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Ensure that the package versioning is fitting the
|
<listitem>
|
||||||
guidelines.</para></listitem>
|
<para>
|
||||||
<listitem><para>Ensure that the commit name is fitting the
|
Ensure that the package versioning is fitting the guidelines.
|
||||||
guidelines.</para></listitem>
|
</para>
|
||||||
<listitem><para>Ensure that the meta field contains correct
|
</listitem>
|
||||||
information.</para>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Ensure that the commit name is fitting the guidelines.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Ensure that the meta field contains correct information.
|
||||||
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>License must be checked to be fitting upstream
|
<listitem>
|
||||||
license.</para></listitem>
|
<para>
|
||||||
<listitem><para>Platforms should be set or the package will not get binary
|
License must be checked to be fitting upstream license.
|
||||||
substitutes.</para></listitem>
|
</para>
|
||||||
<listitem><para>A maintainer must be set, this can be the package
|
</listitem>
|
||||||
submitter or a community member that accepts to take maintainership of
|
<listitem>
|
||||||
the package.</para></listitem>
|
<para>
|
||||||
|
Platforms should be set or the package will not get binary substitutes.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
A maintainer must be set, this can be the package submitter or a
|
||||||
|
community member that accepts to take maintainership of the package.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Ensure that the code contains no typos.</para></listitem>
|
<listitem>
|
||||||
<listitem><para>Ensure the package source.</para>
|
<para>
|
||||||
|
Ensure that the code contains no typos.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Ensure the package source.
|
||||||
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>Mirrors urls should be used when
|
<listitem>
|
||||||
available.</para></listitem>
|
<para>
|
||||||
<listitem><para>The most appropriate function should be used (e.g.
|
Mirrors urls should be used when available.
|
||||||
packages from GitHub should use
|
</para>
|
||||||
<literal>fetchFromGitHub</literal>).</para></listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The most appropriate function should be used (e.g. packages from GitHub
|
||||||
|
should use <literal>fetchFromGitHub</literal>).
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Building the package locally.</para></listitem>
|
<listitem>
|
||||||
<listitem><para>Running every binary.</para></listitem>
|
<para>
|
||||||
</itemizedlist>
|
Building the package locally.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Running every binary.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
|
||||||
<example><title>Sample template for a new package review</title>
|
<example>
|
||||||
|
<title>Sample template for a new package review</title>
|
||||||
<screen>
|
<screen>
|
||||||
##### Reviewed points
|
##### Reviewed points
|
||||||
|
|
||||||
@@ -220,58 +336,107 @@ $ nix-shell -p nox --run "nox-review -k pr PRNUMBER"
|
|||||||
|
|
||||||
##### Comments
|
##### Comments
|
||||||
|
|
||||||
</screen></example>
|
</screen>
|
||||||
</section>
|
</example>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<title>Module updates</title>
|
||||||
|
|
||||||
<section><title>Module updates</title>
|
<para>
|
||||||
|
Module updates are submissions changing modules in some ways. These often
|
||||||
|
contains changes to the options or introduce new options.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>Module updates are submissions changing modules in some ways. These often
|
<para>
|
||||||
contains changes to the options or introduce new options.</para>
|
Reviewing process
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>Reviewing process</para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem><para>Add labels to the pull-request. (Requires commit
|
|
||||||
rights)</para>
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para><literal>8.has: module (update)</literal> and any topic
|
<listitem>
|
||||||
label that fit the module.</para></listitem>
|
<para>
|
||||||
|
Add labels to the pull-request. (Requires commit rights)
|
||||||
|
</para>
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<literal>8.has: module (update)</literal> and any topic label that fit
|
||||||
|
the module.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Ensure that the module maintainers are notified.</para>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Ensure that the module maintainers are notified.
|
||||||
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>Mention-bot notify GitHub users based on the submitted
|
<listitem>
|
||||||
changes, but it can happen that it miss some of the package
|
<para>
|
||||||
maintainers.</para></listitem>
|
Mention-bot notify GitHub users based on the submitted changes, but it
|
||||||
|
can happen that it miss some of the package maintainers.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Ensure that the module tests, if any, are
|
<listitem>
|
||||||
succeeding.</para></listitem>
|
<para>
|
||||||
<listitem><para>Ensure that the introduced options are correct.</para>
|
Ensure that the module tests, if any, are succeeding.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Ensure that the introduced options are correct.
|
||||||
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>Type should be appropriate (string related types differs
|
<listitem>
|
||||||
in their merging capabilities, <literal>optionSet</literal> and
|
<para>
|
||||||
<literal>string</literal> types are deprecated).</para></listitem>
|
Type should be appropriate (string related types differs in their
|
||||||
<listitem><para>Description, default and example should be
|
merging capabilities, <literal>optionSet</literal> and
|
||||||
provided.</para></listitem>
|
<literal>string</literal> types are deprecated).
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Description, default and example should be provided.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Ensure that option changes are backward compatible.</para>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Ensure that option changes are backward compatible.
|
||||||
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para><literal>mkRenamedOptionModule</literal> and
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<literal>mkRenamedOptionModule</literal> and
|
||||||
<literal>mkAliasOptionModule</literal> functions provide way to make
|
<literal>mkAliasOptionModule</literal> functions provide way to make
|
||||||
option changes backward compatible.</para></listitem>
|
option changes backward compatible.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Ensure that removed options are declared with
|
<listitem>
|
||||||
<literal>mkRemovedOptionModule</literal></para></listitem>
|
<para>
|
||||||
<listitem><para>Ensure that changes that are not backward compatible are
|
Ensure that removed options are declared with
|
||||||
mentioned in release notes.</para></listitem>
|
<literal>mkRemovedOptionModule</literal>
|
||||||
<listitem><para>Ensure that documentations affected by the change is
|
</para>
|
||||||
updated.</para></listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Ensure that changes that are not backward compatible are mentioned in
|
||||||
|
release notes.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Ensure that documentations affected by the change is updated.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
|
||||||
<example><title>Sample template for a module update review</title>
|
<example>
|
||||||
|
<title>Sample template for a module update review</title>
|
||||||
<screen>
|
<screen>
|
||||||
##### Reviewed points
|
##### Reviewed points
|
||||||
|
|
||||||
@@ -288,51 +453,89 @@ $ nix-shell -p nox --run "nox-review -k pr PRNUMBER"
|
|||||||
|
|
||||||
##### Comments
|
##### Comments
|
||||||
|
|
||||||
</screen></example>
|
</screen>
|
||||||
</section>
|
</example>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<title>New modules</title>
|
||||||
|
|
||||||
<section><title>New modules</title>
|
<para>
|
||||||
|
New modules submissions introduce a new module to NixOS.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>New modules submissions introduce a new module to NixOS.</para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem><para>Add labels to the pull-request. (Requires commit
|
|
||||||
rights)</para>
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para><literal>8.has: module (new)</literal> and any topic label
|
<listitem>
|
||||||
that fit the module.</para></listitem>
|
<para>
|
||||||
|
Add labels to the pull-request. (Requires commit rights)
|
||||||
|
</para>
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<literal>8.has: module (new)</literal> and any topic label that fit the
|
||||||
|
module.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Ensure that the module tests, if any, are
|
<listitem>
|
||||||
succeeding.</para></listitem>
|
<para>
|
||||||
<listitem><para>Ensure that the introduced options are correct.</para>
|
Ensure that the module tests, if any, are succeeding.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Ensure that the introduced options are correct.
|
||||||
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>Type should be appropriate (string related types differs
|
<listitem>
|
||||||
in their merging capabilities, <literal>optionSet</literal> and
|
<para>
|
||||||
<literal>string</literal> types are deprecated).</para></listitem>
|
Type should be appropriate (string related types differs in their
|
||||||
<listitem><para>Description, default and example should be
|
merging capabilities, <literal>optionSet</literal> and
|
||||||
provided.</para></listitem>
|
<literal>string</literal> types are deprecated).
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Description, default and example should be provided.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Ensure that module <literal>meta</literal> field is
|
<listitem>
|
||||||
present</para>
|
<para>
|
||||||
|
Ensure that module <literal>meta</literal> field is present
|
||||||
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>Maintainers should be declared in
|
<listitem>
|
||||||
<literal>meta.maintainers</literal>.</para></listitem>
|
<para>
|
||||||
<listitem><para>Module documentation should be declared with
|
Maintainers should be declared in <literal>meta.maintainers</literal>.
|
||||||
<literal>meta.doc</literal>.</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Module documentation should be declared with
|
||||||
|
<literal>meta.doc</literal>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Ensure that the module respect other modules
|
<listitem>
|
||||||
functionality.</para>
|
<para>
|
||||||
|
Ensure that the module respect other modules functionality.
|
||||||
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>For example, enabling a module should not open firewall
|
<listitem>
|
||||||
ports by default.</para></listitem>
|
<para>
|
||||||
|
For example, enabling a module should not open firewall ports by
|
||||||
|
default.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
<example><title>Sample template for a new module review</title>
|
<example>
|
||||||
|
<title>Sample template for a new module review</title>
|
||||||
<screen>
|
<screen>
|
||||||
##### Reviewed points
|
##### Reviewed points
|
||||||
|
|
||||||
@@ -350,32 +553,41 @@ $ nix-shell -p nox --run "nox-review -k pr PRNUMBER"
|
|||||||
|
|
||||||
##### Comments
|
##### Comments
|
||||||
|
|
||||||
</screen></example>
|
</screen>
|
||||||
</section>
|
</example>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<title>Other submissions</title>
|
||||||
|
|
||||||
<section><title>Other submissions</title>
|
<para>
|
||||||
|
Other type of submissions requires different reviewing steps.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>Other type of submissions requires different reviewing steps.</para>
|
<para>
|
||||||
|
If you consider having enough knowledge and experience in a topic and would
|
||||||
|
like to be a long-term reviewer for related submissions, please contact the
|
||||||
|
current reviewers for that topic. They will give you information about the
|
||||||
|
reviewing process. The main reviewers for a topic can be hard to find as
|
||||||
|
there is no list, but checking past pull-requests to see who reviewed or
|
||||||
|
git-blaming the code to see who committed to that topic can give some hints.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>If you consider having enough knowledge and experience in a topic and
|
<para>
|
||||||
would like to be a long-term reviewer for related submissions, please contact
|
Container system, boot system and library changes are some examples of the
|
||||||
the current reviewers for that topic. They will give you information about the
|
pull requests fitting this category.
|
||||||
reviewing process.
|
</para>
|
||||||
The main reviewers for a topic can be hard to find as there is no list, but
|
</section>
|
||||||
checking past pull-requests to see who reviewed or git-blaming the code to see
|
<section>
|
||||||
who committed to that topic can give some hints.</para>
|
<title>Merging pull-requests</title>
|
||||||
|
|
||||||
<para>Container system, boot system and library changes are some examples of the
|
<para>
|
||||||
pull requests fitting this category.</para>
|
It is possible for community members that have enough knowledge and
|
||||||
|
experience on a special topic to contribute by merging pull requests.
|
||||||
|
</para>
|
||||||
|
|
||||||
</section>
|
<para>
|
||||||
|
TODO: add the procedure to request merging rights.
|
||||||
<section><title>Merging pull-requests</title>
|
</para>
|
||||||
|
|
||||||
<para>It is possible for community members that have enough knowledge and
|
|
||||||
experience on a special topic to contribute by merging pull requests.</para>
|
|
||||||
|
|
||||||
<para>TODO: add the procedure to request merging rights.</para>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
The following paragraph about how to deal with unactive contributors is just a
|
The following paragraph about how to deal with unactive contributors is just a
|
||||||
@@ -386,10 +598,11 @@ policy.
|
|||||||
three months will have their commit rights revoked.</para>
|
three months will have their commit rights revoked.</para>
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<para>In a case a contributor leaves definitively the Nix community, he should
|
<para>
|
||||||
|
In a case a contributor leaves definitively the Nix community, he should
|
||||||
create an issue or notify the mailing list with references of packages and
|
create an issue or notify the mailing list with references of packages and
|
||||||
modules he maintains so the maintainership can be taken over by other
|
modules he maintains so the maintainership can be taken over by other
|
||||||
contributors.</para>
|
contributors.
|
||||||
|
</para>
|
||||||
</section>
|
</section>
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
{ pkgs ? import ../. {} }:
|
{ pkgs ? import ../. {} }:
|
||||||
(import ./default.nix).overrideAttrs (x: {
|
(import ./default.nix).overrideAttrs (x: {
|
||||||
buildInputs = x.buildInputs ++ [ pkgs.xmloscopy ];
|
buildInputs = x.buildInputs ++ [ pkgs.xmloscopy ];
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|||||||
+1904
-1431
File diff suppressed because it is too large
Load Diff
+384
-320
@@ -1,230 +1,261 @@
|
|||||||
<chapter xmlns="http://docbook.org/ns/docbook"
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xml:id="chap-submitting-changes">
|
xml:id="chap-submitting-changes">
|
||||||
|
<title>Submitting changes</title>
|
||||||
|
<section>
|
||||||
|
<title>Making patches</title>
|
||||||
|
|
||||||
<title>Submitting changes</title>
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
<section>
|
<para>
|
||||||
<title>Making patches</title>
|
Read <link xlink:href="https://nixos.org/nixpkgs/manual/">Manual (How to
|
||||||
|
write packages for Nix)</link>.
|
||||||
<itemizedlist>
|
</para>
|
||||||
<listitem>
|
</listitem>
|
||||||
<para>Read <link xlink:href="https://nixos.org/nixpkgs/manual/">Manual (How to write packages for Nix)</link>.</para>
|
<listitem>
|
||||||
</listitem>
|
<para>
|
||||||
|
Fork the repository on GitHub.
|
||||||
<listitem>
|
</para>
|
||||||
<para>Fork the repository on GitHub.</para>
|
</listitem>
|
||||||
</listitem>
|
<listitem>
|
||||||
|
<para>
|
||||||
<listitem>
|
Create a branch for your future fix.
|
||||||
<para>Create a branch for your future fix.
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
<itemizedlist>
|
<para>
|
||||||
<listitem>
|
You can make branch from a commit of your local
|
||||||
<para>You can make branch from a commit of your local <command>nixos-version</command>. That will help you to avoid additional local compilations. Because you will receive packages from binary cache.
|
<command>nixos-version</command>. That will help you to avoid
|
||||||
|
additional local compilations. Because you will receive packages from
|
||||||
<itemizedlist>
|
binary cache.
|
||||||
<listitem>
|
<itemizedlist>
|
||||||
<para>For example: <command>nixos-version</command> returns <command>15.05.git.0998212 (Dingo)</command>. So you can do:</para>
|
<listitem>
|
||||||
</listitem>
|
<para>
|
||||||
</itemizedlist>
|
For example: <command>nixos-version</command> returns
|
||||||
|
<command>15.05.git.0998212 (Dingo)</command>. So you can do:
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
<screen>
|
<screen>
|
||||||
$ git checkout 0998212
|
$ git checkout 0998212
|
||||||
$ git checkout -b 'fix/pkg-name-update'
|
$ git checkout -b 'fix/pkg-name-update'
|
||||||
</screen>
|
</screen>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
<listitem>
|
<para>
|
||||||
<para>Please avoid working directly on the <command>master</command> branch.</para>
|
Please avoid working directly on the <command>master</command> branch.
|
||||||
</listitem>
|
</para>
|
||||||
</itemizedlist>
|
</listitem>
|
||||||
</para>
|
</itemizedlist>
|
||||||
</listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Make commits of logical units.
|
<para>
|
||||||
|
Make commits of logical units.
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>If you removed pkgs, made some major NixOS changes etc., write about them in <command>nixos/doc/manual/release-notes/rl-unstable.xml</command>.</para>
|
<para>
|
||||||
</listitem>
|
If you removed pkgs, made some major NixOS changes etc., write about
|
||||||
</itemizedlist>
|
them in
|
||||||
</para>
|
<command>nixos/doc/manual/release-notes/rl-unstable.xml</command>.
|
||||||
</listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem>
|
</itemizedlist>
|
||||||
<para>Check for unnecessary whitespace with <command>git diff --check</command> before committing.</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
<listitem>
|
<para>
|
||||||
<para>Format the commit in a following way:</para>
|
Check for unnecessary whitespace with <command>git diff --check</command>
|
||||||
|
before committing.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Format the commit in a following way:
|
||||||
|
</para>
|
||||||
<programlisting>
|
<programlisting>
|
||||||
(pkg-name | nixos/<module>): (from -> to | init at version | refactor | etc)
|
(pkg-name | nixos/<module>): (from -> to | init at version | refactor | etc)
|
||||||
Additional information.
|
Additional information.
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Examples:
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<command>nginx: init at 2.0.1</command>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<command>firefox: 54.0.1 -> 55.0</command>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<command>nixos/hydra: add bazBaz option</command>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<command>nixos/nginx: refactor config generation</command>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Test your changes. If you work with
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
nixpkgs:
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
update pkg ->
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<command>nix-env -i pkg-name -f <path to your local nixpkgs
|
||||||
|
folder></command>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
add pkg ->
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Make sure it's in
|
||||||
|
<command>pkgs/top-level/all-packages.nix</command>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<command>nix-env -i pkg-name -f <path to your local nixpkgs
|
||||||
|
folder></command>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<emphasis>If you don't want to install pkg in you
|
||||||
|
profile</emphasis>.
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<command>nix-build -A pkg-attribute-name <path to your local
|
||||||
|
nixpkgs folder>/default.nix</command> and check results in the
|
||||||
|
folder <command>result</command>. It will appear in the same
|
||||||
|
directory where you did <command>nix-build</command>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
If you did <command>nix-env -i pkg-name</command> you can do
|
||||||
|
<command>nix-env -e pkg-name</command> to uninstall it from your
|
||||||
|
system.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
NixOS and its modules:
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
You can add new module to your NixOS configuration file (usually
|
||||||
|
it's <command>/etc/nixos/configuration.nix</command>). And do
|
||||||
|
<command>sudo nixos-rebuild test -I nixpkgs=<path to your local
|
||||||
|
nixpkgs folder> --fast</command>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
If you have commits <command>pkg-name: oh, forgot to insert
|
||||||
|
whitespace</command>: squash commits in this case. Use <command>git rebase
|
||||||
|
-i</command>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Rebase you branch against current <command>master</command>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<title>Submitting changes</title>
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Examples:
|
<para>
|
||||||
|
Push your changes to your fork of nixpkgs.
|
||||||
<itemizedlist>
|
</para>
|
||||||
<listitem>
|
</listitem>
|
||||||
<para>
|
<listitem>
|
||||||
<command>nginx: init at 2.0.1</command>
|
<para>
|
||||||
</para>
|
Create pull request:
|
||||||
</listitem>
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
<listitem>
|
<para>
|
||||||
<para>
|
Write the title in format <command>(pkg-name | nixos/<module>):
|
||||||
<command>firefox: 54.0.1 -> 55.0</command>
|
improvement</command>.
|
||||||
</para>
|
<itemizedlist>
|
||||||
</listitem>
|
<listitem>
|
||||||
|
<para>
|
||||||
<listitem>
|
If you update the pkg, write versions <command>from -> to</command>.
|
||||||
<para>
|
</para>
|
||||||
<command>nixos/hydra: add bazBaz option</command>
|
</listitem>
|
||||||
</para>
|
</itemizedlist>
|
||||||
</listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<command>nixos/nginx: refactor config generation</command>
|
Write in comment if you have tested your patch. Do not rely much on
|
||||||
</para>
|
<command>TravisCI</command>.
|
||||||
</listitem>
|
</para>
|
||||||
</itemizedlist>
|
</listitem>
|
||||||
</para>
|
<listitem>
|
||||||
</listitem>
|
<para>
|
||||||
</itemizedlist>
|
If you make an improvement, write about your motivation.
|
||||||
</listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Test your changes. If you work with
|
<para>
|
||||||
|
Notify maintainers of the package. For example add to the message:
|
||||||
<itemizedlist>
|
<command>cc @jagajaga @domenkozar</command>.
|
||||||
<listitem>
|
</para>
|
||||||
<para>nixpkgs:
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
<itemizedlist>
|
</para>
|
||||||
<listitem>
|
</listitem>
|
||||||
<para>update pkg ->
|
</itemizedlist>
|
||||||
|
</section>
|
||||||
<itemizedlist>
|
<section>
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
<command>nix-env -i pkg-name -f <path to your local nixpkgs folder></command>
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>add pkg ->
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para>Make sure it's in <command>pkgs/top-level/all-packages.nix</command>
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
<command>nix-env -i pkg-name -f <path to your local nixpkgs folder></command>
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
<emphasis>If you don't want to install pkg in you profile</emphasis>.
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
<command>nix-build -A pkg-attribute-name <path to your local nixpkgs folder>/default.nix</command> and check results in the folder <command>result</command>. It will appear in the same directory where you did <command>nix-build</command>.</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>If you did <command>nix-env -i pkg-name</command> you can do <command>nix-env -e pkg-name</command> to uninstall it from your system.</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>NixOS and its modules:
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para>You can add new module to your NixOS configuration file (usually it's <command>/etc/nixos/configuration.nix</command>).
|
|
||||||
And do <command>sudo nixos-rebuild test -I nixpkgs=<path to your local nixpkgs folder> --fast</command>.</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>If you have commits <command>pkg-name: oh, forgot to insert whitespace</command>: squash commits in this case. Use <command>git rebase -i</command>.</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>Rebase you branch against current <command>master</command>.</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>Submitting changes</title>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para>Push your changes to your fork of nixpkgs.</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>Create pull request:
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para>Write the title in format <command>(pkg-name | nixos/<module>): improvement</command>.
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para>If you update the pkg, write versions <command>from -> to</command>.</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>Write in comment if you have tested your patch. Do not rely much on <command>TravisCI</command>.</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>If you make an improvement, write about your motivation.</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>Notify maintainers of the package. For example add to the message: <command>cc @jagajaga @domenkozar</command>.</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>Pull Request Template</title>
|
<title>Pull Request Template</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The pull request template helps determine what steps have been made for a
|
The pull request template helps determine what steps have been made for a
|
||||||
contribution so far, and will help guide maintainers on the status of a
|
contribution so far, and will help guide maintainers on the status of a
|
||||||
@@ -232,168 +263,200 @@ Additional information.
|
|||||||
the title does not address and link any existing issues related to the pull
|
the title does not address and link any existing issues related to the pull
|
||||||
request.
|
request.
|
||||||
</para>
|
</para>
|
||||||
<para>When a PR is created, it will be pre-populated with some checkboxes detailed below:
|
|
||||||
|
<para>
|
||||||
|
When a PR is created, it will be pre-populated with some checkboxes detailed
|
||||||
|
below:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<title>Tested using sandboxing</title>
|
<title>Tested using sandboxing</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
When sandbox builds are enabled, Nix will setup an isolated environment
|
When sandbox builds are enabled, Nix will setup an isolated environment for
|
||||||
for each build process. It is used to remove further hidden dependencies
|
each build process. It is used to remove further hidden dependencies set by
|
||||||
set by the build environment to improve reproducibility. This includes
|
the build environment to improve reproducibility. This includes access to
|
||||||
access to the network during the build outside of
|
the network during the build outside of <function>fetch*</function>
|
||||||
<function>fetch*</function> functions and files outside the Nix store.
|
functions and files outside the Nix store. Depending on the operating
|
||||||
Depending on the operating system access to other resources are blocked
|
system access to other resources are blocked as well (ex. inter process
|
||||||
as well (ex. inter process communication is isolated on Linux); see <link
|
communication is isolated on Linux); see
|
||||||
|
<link
|
||||||
xlink:href="https://nixos.org/nix/manual/#description-45">build-use-sandbox</link>
|
xlink:href="https://nixos.org/nix/manual/#description-45">build-use-sandbox</link>
|
||||||
in Nix manual for details.
|
in Nix manual for details.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Sandboxing is not enabled by default in Nix due to a small performance
|
Sandboxing is not enabled by default in Nix due to a small performance hit
|
||||||
hit on each build. In pull requests for <link
|
on each build. In pull requests for
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/">nixpkgs</link> people
|
<link
|
||||||
are asked to test builds with sandboxing enabled (see <literal>Tested
|
xlink:href="https://github.com/NixOS/nixpkgs/">nixpkgs</link>
|
||||||
using sandboxing</literal> in the pull request template) because
|
people are asked to test builds with sandboxing enabled (see
|
||||||
|
<literal>Tested using sandboxing</literal> in the pull request template)
|
||||||
|
because
|
||||||
in<link
|
in<link
|
||||||
xlink:href="https://nixos.org/hydra/">https://nixos.org/hydra/</link>
|
xlink:href="https://nixos.org/hydra/">https://nixos.org/hydra/</link>
|
||||||
sandboxing is also used.
|
sandboxing is also used.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Depending if you use NixOS or other platforms you can use one of the
|
Depending if you use NixOS or other platforms you can use one of the
|
||||||
following methods to enable sandboxing <emphasis role="bold">before</emphasis> building the package:
|
following methods to enable sandboxing
|
||||||
|
<emphasis role="bold">before</emphasis> building the package:
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<emphasis role="bold">Globally enable sandboxing on NixOS</emphasis>:
|
<emphasis role="bold">Globally enable sandboxing on NixOS</emphasis>:
|
||||||
add the following to
|
add the following to <filename>configuration.nix</filename>
|
||||||
<filename>configuration.nix</filename>
|
<screen>nix.useSandbox = true;</screen>
|
||||||
<screen>nix.useSandbox = true;</screen>
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<emphasis role="bold">Globally enable sandboxing on non-NixOS platforms</emphasis>:
|
<emphasis role="bold">Globally enable sandboxing on non-NixOS
|
||||||
add the following to: <filename>/etc/nix/nix.conf</filename>
|
platforms</emphasis>: add the following to:
|
||||||
<screen>build-use-sandbox = true</screen>
|
<filename>/etc/nix/nix.conf</filename>
|
||||||
|
<screen>build-use-sandbox = true</screen>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<title>Built on platform(s)</title>
|
<title>Built on platform(s)</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Many Nix packages are designed to run on multiple
|
Many Nix packages are designed to run on multiple platforms. As such, it's
|
||||||
platforms. As such, it's important to let the maintainer know which
|
important to let the maintainer know which platforms your changes have been
|
||||||
platforms your changes have been tested on. It's not always practical to
|
tested on. It's not always practical to test a change on all platforms, and
|
||||||
test a change on all platforms, and is not required for a pull request to
|
is not required for a pull request to be merged. Only check the systems you
|
||||||
be merged. Only check the systems you tested the build on in this
|
tested the build on in this section.
|
||||||
section.
|
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<title>Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)</title>
|
<title>Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Packages with automated tests are much more likely to be merged in a
|
Packages with automated tests are much more likely to be merged in a timely
|
||||||
timely fashion because it doesn't require as much manual testing by the
|
fashion because it doesn't require as much manual testing by the maintainer
|
||||||
maintainer to verify the functionality of the package. If there are
|
to verify the functionality of the package. If there are existing tests for
|
||||||
existing tests for the package, they should be run to verify your changes
|
the package, they should be run to verify your changes do not break the
|
||||||
do not break the tests. Tests only apply to packages with NixOS modules
|
tests. Tests only apply to packages with NixOS modules defined and can only
|
||||||
defined and can only be run on Linux. For more details on writing and
|
be run on Linux. For more details on writing and running tests, see the
|
||||||
running tests, see the <link
|
<link
|
||||||
xlink:href="https://nixos.org/nixos/manual/index.html#sec-nixos-tests">section
|
xlink:href="https://nixos.org/nixos/manual/index.html#sec-nixos-tests">section
|
||||||
in the NixOS manual</link>.
|
in the NixOS manual</link>.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<title>Tested compilation of all pkgs that depend on this change using <command>nox-review</command></title>
|
<title>Tested compilation of all pkgs that depend on this change using <command>nox-review</command></title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
If you are updating a package's version, you can use nox to make sure all
|
If you are updating a package's version, you can use nox to make sure all
|
||||||
packages that depend on the updated package still compile correctly. This
|
packages that depend on the updated package still compile correctly. This
|
||||||
can be done using the nox utility. The <command>nox-review</command>
|
can be done using the nox utility. The <command>nox-review</command>
|
||||||
utility can look for and build all dependencies either based on
|
utility can look for and build all dependencies either based on uncommited
|
||||||
uncommited changes with the <literal>wip</literal> option or specifying a
|
changes with the <literal>wip</literal> option or specifying a github pull
|
||||||
github pull request number.
|
request number.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
review uncommitted changes:
|
review uncommitted changes:
|
||||||
<screen>nix-shell -p nox --run "nox-review wip"</screen>
|
<screen>nix-shell -p nox --run "nox-review wip"</screen>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
review changes from pull request number 12345:
|
review changes from pull request number 12345:
|
||||||
<screen>nix-shell -p nox --run "nox-review pr 12345"</screen>
|
<screen>nix-shell -p nox --run "nox-review pr 12345"</screen>
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<title>Tested execution of all binary files (usually in <filename>./result/bin/</filename>)</title>
|
<title>Tested execution of all binary files (usually in <filename>./result/bin/</filename>)</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
It's important to test any executables generated by a build when you
|
It's important to test any executables generated by a build when you change
|
||||||
change or create a package in nixpkgs. This can be done by looking in
|
or create a package in nixpkgs. This can be done by looking in
|
||||||
<filename>./result/bin</filename> and running any files in there, or at a
|
<filename>./result/bin</filename> and running any files in there, or at a
|
||||||
minimum, the main executable for the package. For example, if you make a change
|
minimum, the main executable for the package. For example, if you make a
|
||||||
to <package>texlive</package>, you probably would only check the binaries
|
change to <package>texlive</package>, you probably would only check the
|
||||||
associated with the change you made rather than testing all of them.
|
binaries associated with the change you made rather than testing all of
|
||||||
|
them.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<title>Meets nixpkgs contribution standards</title>
|
<title>Meets nixpkgs contribution standards</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The last checkbox is fits <link
|
The last checkbox is fits
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md">CONTRIBUTING.md</link>.
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md">CONTRIBUTING.md</link>.
|
||||||
The contributing document has detailed information on standards the Nix
|
The contributing document has detailed information on standards the Nix
|
||||||
community has for commit messages, reviews, licensing of contributions
|
community has for commit messages, reviews, licensing of contributions you
|
||||||
you make to the project, etc... Everyone should read and understand the
|
make to the project, etc... Everyone should read and understand the
|
||||||
standards the community has for contributing before submitting a pull
|
standards the community has for contributing before submitting a pull
|
||||||
request.
|
request.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
<section>
|
||||||
|
<title>Hotfixing pull requests</title>
|
||||||
|
|
||||||
<section>
|
<itemizedlist>
|
||||||
<title>Hotfixing pull requests</title>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Make the appropriate changes in you branch.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Don't create additional commits, do
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<command>git rebase -i</command>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<command>git push --force</command> to your branch.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<title>Commit policy</title>
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Make the appropriate changes in you branch.</para>
|
<para>
|
||||||
</listitem>
|
Commits must be sufficiently tested before being merged, both for the
|
||||||
|
master and staging branches.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Hydra builds for master and staging should not be used as testing
|
||||||
|
platform, it's a build farm for changes that have been already tested.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
When changing the bootloader installation process, extra care must be
|
||||||
|
taken. Grub installations cannot be rolled back, hence changes may break
|
||||||
|
people's installations forever. For any non-trivial change to the
|
||||||
|
bootloader please file a PR asking for review, especially from @edolstra.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
|
||||||
<listitem>
|
<section>
|
||||||
<para>Don't create additional commits, do
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para><command>git rebase -i</command></para>
|
|
||||||
</listitem>
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
<command>git push --force</command> to your branch.</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
</itemizedlist>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>Commit policy</title>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para>Commits must be sufficiently tested before being merged, both for the master and staging branches.</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>Hydra builds for master and staging should not be used as testing platform, it's a build farm for changes that have been already tested.</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>When changing the bootloader installation process, extra care must be taken. Grub installations cannot be rolled back, hence changes may break people's installations forever. For any non-trivial change to the bootloader please file a PR asking for review, especially from @edolstra.</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>Master branch</title>
|
<title>Master branch</title>
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
@@ -403,9 +466,9 @@ Additional information.
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<title>Staging branch</title>
|
<title>Staging branch</title>
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
@@ -413,23 +476,24 @@ Additional information.
|
|||||||
<para>
|
<para>
|
||||||
It's only for non-breaking mass-rebuild commits. That means it's not to
|
It's only for non-breaking mass-rebuild commits. That means it's not to
|
||||||
be used for testing, and changes must have been well tested already.
|
be used for testing, and changes must have been well tested already.
|
||||||
<link xlink:href="http://comments.gmane.org/gmane.linux.distributions.nixos/13447">Read policy here</link>.
|
<link xlink:href="http://comments.gmane.org/gmane.linux.distributions.nixos/13447">Read
|
||||||
|
policy here</link>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
If the branch is already in a broken state, please refrain from adding
|
If the branch is already in a broken state, please refrain from adding
|
||||||
extra new breakages. Stabilize it for a few days, merge into master,
|
extra new breakages. Stabilize it for a few days, merge into master, then
|
||||||
then resume development on staging.
|
resume development on staging.
|
||||||
<link xlink:href="http://hydra.nixos.org/jobset/nixpkgs/staging#tabs-evaluations">Keep an eye on the staging evaluations here</link>.
|
<link xlink:href="http://hydra.nixos.org/jobset/nixpkgs/staging#tabs-evaluations">Keep
|
||||||
If any fixes for staging happen to be already in master, then master can
|
an eye on the staging evaluations here</link>. If any fixes for staging
|
||||||
be merged into staging.
|
happen to be already in master, then master can be merged into staging.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<title>Stable release branches</title>
|
<title>Stable release branches</title>
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
@@ -440,8 +504,10 @@ Additional information.
|
|||||||
clear description about why this needs to be included in the stable
|
clear description about why this needs to be included in the stable
|
||||||
branch.
|
branch.
|
||||||
</para>
|
</para>
|
||||||
<para>An example of a cherry-picked commit would look like this:</para>
|
<para>
|
||||||
<screen>
|
An example of a cherry-picked commit would look like this:
|
||||||
|
</para>
|
||||||
|
<screen>
|
||||||
nixos: Refactor the world.
|
nixos: Refactor the world.
|
||||||
|
|
||||||
The original commit message describing the reason why the world was torn apart.
|
The original commit message describing the reason why the world was torn apart.
|
||||||
@@ -452,8 +518,6 @@ the stone age.
|
|||||||
</screen>
|
</screen>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
|
</section>
|
||||||
</section>
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|
||||||
|
|||||||
@@ -1760,6 +1760,11 @@
|
|||||||
github = "tftio";
|
github = "tftio";
|
||||||
name = "James Felix Black";
|
name = "James Felix Black";
|
||||||
};
|
};
|
||||||
|
jflanglois = {
|
||||||
|
email = "yourstruly@julienlanglois.me";
|
||||||
|
github = "jflanglois";
|
||||||
|
name = "Julien Langlois";
|
||||||
|
};
|
||||||
jfrankenau = {
|
jfrankenau = {
|
||||||
email = "johannes@frankenau.net";
|
email = "johannes@frankenau.net";
|
||||||
github = "jfrankenau";
|
github = "jfrankenau";
|
||||||
@@ -3979,6 +3984,11 @@
|
|||||||
github = "vyp";
|
github = "vyp";
|
||||||
name = "vyp";
|
name = "vyp";
|
||||||
};
|
};
|
||||||
|
wchresta = {
|
||||||
|
email = "wchresta.nix@chrummibei.ch";
|
||||||
|
github = "wchresta";
|
||||||
|
name = "wchresta";
|
||||||
|
};
|
||||||
wedens = {
|
wedens = {
|
||||||
email = "kirill.wedens@gmail.com";
|
email = "kirill.wedens@gmail.com";
|
||||||
name = "wedens";
|
name = "wedens";
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
generated
|
||||||
|
manual-combined.xml
|
||||||
@@ -1,6 +1,22 @@
|
|||||||
debug:
|
.PHONY: all
|
||||||
|
all: manual-combined.xml format
|
||||||
|
|
||||||
|
.PHONY: debug
|
||||||
|
debug: generated manual-combined.xml
|
||||||
|
|
||||||
|
manual-combined.xml: generated *.xml
|
||||||
|
rm -f ./manual-combined.xml
|
||||||
nix-shell --packages xmloscopy \
|
nix-shell --packages xmloscopy \
|
||||||
--run 'xmloscopy --docbook5 ./manual.xml ./manual-combined.xml'
|
--run "xmloscopy --docbook5 ./manual.xml ./manual-combined.xml"
|
||||||
|
|
||||||
|
.PHONY: format
|
||||||
|
format:
|
||||||
|
find . -iname '*.xml' -type f -print0 | xargs -0 -I{} -n1 \
|
||||||
|
xmlformat --config-file "../xmlformat.conf" -i {}
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
|
clean:
|
||||||
|
rm -f manual-combined.xml generated
|
||||||
|
|
||||||
generated: ./options-to-docbook.xsl
|
generated: ./options-to-docbook.xsl
|
||||||
nix-build ../../release.nix \
|
nix-build ../../release.nix \
|
||||||
|
|||||||
@@ -3,63 +3,83 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-boot-problems">
|
xml:id="sec-boot-problems">
|
||||||
|
<title>Boot Problems</title>
|
||||||
|
|
||||||
<title>Boot Problems</title>
|
<para>
|
||||||
|
If NixOS fails to boot, there are a number of kernel command line parameters
|
||||||
<para>If NixOS fails to boot, there are a number of kernel command
|
that may help you to identify or fix the issue. You can add these parameters
|
||||||
line parameters that may help you to identify or fix the issue. You
|
in the GRUB boot menu by pressing “e” to modify the selected boot entry
|
||||||
can add these parameters in the GRUB boot menu by pressing “e” to
|
and editing the line starting with <literal>linux</literal>. The following
|
||||||
modify the selected boot entry and editing the line starting with
|
are some useful kernel command line parameters that are recognised by the
|
||||||
<literal>linux</literal>. The following are some useful kernel command
|
NixOS boot scripts or by systemd:
|
||||||
line parameters that are recognised by the NixOS boot scripts or by
|
<variablelist>
|
||||||
systemd:
|
<varlistentry>
|
||||||
|
<term><literal>boot.shell_on_fail</literal>
|
||||||
<variablelist>
|
</term>
|
||||||
|
<listitem>
|
||||||
<varlistentry><term><literal>boot.shell_on_fail</literal></term>
|
<para>
|
||||||
<listitem><para>Start a root shell if something goes wrong in
|
Start a root shell if something goes wrong in stage 1 of the boot process
|
||||||
stage 1 of the boot process (the initial ramdisk). This is
|
(the initial ramdisk). This is disabled by default because there is no
|
||||||
disabled by default because there is no authentication for the
|
authentication for the root shell.
|
||||||
root shell.</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
<varlistentry><term><literal>boot.debug1</literal></term>
|
<term><literal>boot.debug1</literal>
|
||||||
<listitem><para>Start an interactive shell in stage 1 before
|
</term>
|
||||||
anything useful has been done. That is, no modules have been
|
<listitem>
|
||||||
loaded and no file systems have been mounted, except for
|
<para>
|
||||||
<filename>/proc</filename> and
|
Start an interactive shell in stage 1 before anything useful has been
|
||||||
<filename>/sys</filename>.</para></listitem>
|
done. That is, no modules have been loaded and no file systems have been
|
||||||
|
mounted, except for <filename>/proc</filename> and
|
||||||
|
<filename>/sys</filename>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
<varlistentry><term><literal>boot.trace</literal></term>
|
<term><literal>boot.trace</literal>
|
||||||
<listitem><para>Print every shell command executed by the stage 1
|
</term>
|
||||||
and 2 boot scripts.</para></listitem>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Print every shell command executed by the stage 1 and 2 boot scripts.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
<varlistentry><term><literal>single</literal></term>
|
<term><literal>single</literal>
|
||||||
<listitem><para>Boot into rescue mode (a.k.a. single user mode).
|
</term>
|
||||||
This will cause systemd to start nothing but the unit
|
<listitem>
|
||||||
<literal>rescue.target</literal>, which runs
|
<para>
|
||||||
<command>sulogin</command> to prompt for the root password and
|
Boot into rescue mode (a.k.a. single user mode). This will cause systemd
|
||||||
start a root login shell. Exiting the shell causes the system to
|
to start nothing but the unit <literal>rescue.target</literal>, which
|
||||||
continue with the normal boot process.</para></listitem>
|
runs <command>sulogin</command> to prompt for the root password and start
|
||||||
|
a root login shell. Exiting the shell causes the system to continue with
|
||||||
|
the normal boot process.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
<varlistentry><term><literal>systemd.log_level=debug systemd.log_target=console</literal></term>
|
<term><literal>systemd.log_level=debug systemd.log_target=console</literal>
|
||||||
<listitem><para>Make systemd very verbose and send log messages to
|
</term>
|
||||||
the console instead of the journal.</para></listitem>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Make systemd very verbose and send log messages to the console instead of
|
||||||
|
the journal.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
</variablelist>
|
||||||
|
For more parameters recognised by systemd, see <citerefentry>
|
||||||
|
<refentrytitle>systemd</refentrytitle>
|
||||||
|
<manvolnum>1</manvolnum></citerefentry>.
|
||||||
|
</para>
|
||||||
|
|
||||||
</variablelist>
|
<para>
|
||||||
|
If no login prompts or X11 login screens appear (e.g. due to hanging
|
||||||
For more parameters recognised by systemd, see
|
dependencies), you can press Alt+ArrowUp. If you’re lucky, this will start
|
||||||
<citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>.</para>
|
rescue mode (described above). (Also note that since most units have a
|
||||||
|
90-second timeout before systemd gives up on them, the
|
||||||
<para>If no login prompts or X11 login screens appear (e.g. due to
|
<command>agetty</command> login prompts should appear eventually unless
|
||||||
hanging dependencies), you can press Alt+ArrowUp. If you’re lucky,
|
something is very wrong.)
|
||||||
this will start rescue mode (described above). (Also note that since
|
</para>
|
||||||
most units have a 90-second timeout before systemd gives up on them,
|
|
||||||
the <command>agetty</command> login prompts should appear eventually
|
|
||||||
unless something is very wrong.)</para>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
@@ -3,60 +3,51 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-nix-gc">
|
xml:id="sec-nix-gc">
|
||||||
|
<title>Cleaning the Nix Store</title>
|
||||||
<title>Cleaning the Nix Store</title>
|
<para>
|
||||||
|
Nix has a purely functional model, meaning that packages are never upgraded
|
||||||
<para>Nix has a purely functional model, meaning that packages are
|
in place. Instead new versions of packages end up in a different location in
|
||||||
never upgraded in place. Instead new versions of packages end up in a
|
the Nix store (<filename>/nix/store</filename>). You should periodically run
|
||||||
different location in the Nix store (<filename>/nix/store</filename>).
|
Nix’s <emphasis>garbage collector</emphasis> to remove old, unreferenced
|
||||||
You should periodically run Nix’s <emphasis>garbage
|
packages. This is easy:
|
||||||
collector</emphasis> to remove old, unreferenced packages. This is
|
|
||||||
easy:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-collect-garbage
|
$ nix-collect-garbage
|
||||||
</screen>
|
</screen>
|
||||||
|
Alternatively, you can use a systemd unit that does the same in the
|
||||||
Alternatively, you can use a systemd unit that does the same in the
|
background:
|
||||||
background:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# systemctl start nix-gc.service
|
# systemctl start nix-gc.service
|
||||||
</screen>
|
</screen>
|
||||||
|
You can tell NixOS in <filename>configuration.nix</filename> to run this unit
|
||||||
You can tell NixOS in <filename>configuration.nix</filename> to run
|
automatically at certain points in time, for instance, every night at 03:15:
|
||||||
this unit automatically at certain points in time, for instance, every
|
|
||||||
night at 03:15:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-nix.gc.automatic"/> = true;
|
<xref linkend="opt-nix.gc.automatic"/> = true;
|
||||||
<xref linkend="opt-nix.gc.dates"/> = "03:15";
|
<xref linkend="opt-nix.gc.dates"/> = "03:15";
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
</para>
|
<para>
|
||||||
|
The commands above do not remove garbage collector roots, such as old system
|
||||||
<para>The commands above do not remove garbage collector roots, such
|
configurations. Thus they do not remove the ability to roll back to previous
|
||||||
as old system configurations. Thus they do not remove the ability to
|
configurations. The following command deletes old roots, removing the ability
|
||||||
roll back to previous configurations. The following command deletes
|
to roll back to them:
|
||||||
old roots, removing the ability to roll back to them:
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-collect-garbage -d
|
$ nix-collect-garbage -d
|
||||||
</screen>
|
</screen>
|
||||||
You can also do this for specific profiles, e.g.
|
You can also do this for specific profiles, e.g.
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-env -p /nix/var/nix/profiles/per-user/eelco/profile --delete-generations old
|
$ nix-env -p /nix/var/nix/profiles/per-user/eelco/profile --delete-generations old
|
||||||
</screen>
|
</screen>
|
||||||
Note that NixOS system configurations are stored in the profile
|
Note that NixOS system configurations are stored in the profile
|
||||||
<filename>/nix/var/nix/profiles/system</filename>.</para>
|
<filename>/nix/var/nix/profiles/system</filename>.
|
||||||
|
</para>
|
||||||
<para>Another way to reclaim disk space (often as much as 40% of the
|
<para>
|
||||||
size of the Nix store) is to run Nix’s store optimiser, which seeks
|
Another way to reclaim disk space (often as much as 40% of the size of the
|
||||||
out identical files in the store and replaces them with hard links to
|
Nix store) is to run Nix’s store optimiser, which seeks out identical files
|
||||||
a single copy.
|
in the store and replaces them with hard links to a single copy.
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-store --optimise
|
$ nix-store --optimise
|
||||||
</screen>
|
</screen>
|
||||||
Since this command needs to read the entire Nix store, it can take
|
Since this command needs to read the entire Nix store, it can take quite a
|
||||||
quite a while to finish.</para>
|
while to finish.
|
||||||
|
</para>
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,15 +3,13 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-container-networking">
|
xml:id="sec-container-networking">
|
||||||
|
<title>Container Networking</title>
|
||||||
|
|
||||||
|
<para>
|
||||||
<title>Container Networking</title>
|
When you create a container using <literal>nixos-container create</literal>,
|
||||||
|
it gets it own private IPv4 address in the range
|
||||||
<para>When you create a container using <literal>nixos-container
|
<literal>10.233.0.0/16</literal>. You can get the container’s IPv4 address
|
||||||
create</literal>, it gets it own private IPv4 address in the range
|
as follows:
|
||||||
<literal>10.233.0.0/16</literal>. You can get the container’s IPv4
|
|
||||||
address as follows:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-container show-ip foo
|
# nixos-container show-ip foo
|
||||||
10.233.4.2
|
10.233.4.2
|
||||||
@@ -19,40 +17,39 @@ address as follows:
|
|||||||
$ ping -c1 10.233.4.2
|
$ ping -c1 10.233.4.2
|
||||||
64 bytes from 10.233.4.2: icmp_seq=1 ttl=64 time=0.106 ms
|
64 bytes from 10.233.4.2: icmp_seq=1 ttl=64 time=0.106 ms
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
|
Networking is implemented using a pair of virtual Ethernet devices. The
|
||||||
<para>Networking is implemented using a pair of virtual Ethernet
|
network interface in the container is called <literal>eth0</literal>, while
|
||||||
devices. The network interface in the container is called
|
the matching interface in the host is called
|
||||||
<literal>eth0</literal>, while the matching interface in the host is
|
<literal>ve-<replaceable>container-name</replaceable></literal> (e.g.,
|
||||||
called <literal>ve-<replaceable>container-name</replaceable></literal>
|
<literal>ve-foo</literal>). The container has its own network namespace and
|
||||||
(e.g., <literal>ve-foo</literal>). The container has its own network
|
the <literal>CAP_NET_ADMIN</literal> capability, so it can perform arbitrary
|
||||||
namespace and the <literal>CAP_NET_ADMIN</literal> capability, so it
|
network configuration such as setting up firewall rules, without affecting or
|
||||||
can perform arbitrary network configuration such as setting up
|
having access to the host’s network.
|
||||||
firewall rules, without affecting or having access to the host’s
|
</para>
|
||||||
network.</para>
|
|
||||||
|
|
||||||
<para>By default, containers cannot talk to the outside network. If
|
|
||||||
you want that, you should set up Network Address Translation (NAT)
|
|
||||||
rules on the host to rewrite container traffic to use your external
|
|
||||||
IP address. This can be accomplished using the following configuration
|
|
||||||
on the host:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
By default, containers cannot talk to the outside network. If you want that,
|
||||||
|
you should set up Network Address Translation (NAT) rules on the host to
|
||||||
|
rewrite container traffic to use your external IP address. This can be
|
||||||
|
accomplished using the following configuration on the host:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.nat.enable"/> = true;
|
<xref linkend="opt-networking.nat.enable"/> = true;
|
||||||
<xref linkend="opt-networking.nat.internalInterfaces"/> = ["ve-+"];
|
<xref linkend="opt-networking.nat.internalInterfaces"/> = ["ve-+"];
|
||||||
<xref linkend="opt-networking.nat.externalInterface"/> = "eth0";
|
<xref linkend="opt-networking.nat.externalInterface"/> = "eth0";
|
||||||
</programlisting>
|
</programlisting>
|
||||||
where <literal>eth0</literal> should be replaced with the desired
|
where <literal>eth0</literal> should be replaced with the desired external
|
||||||
external interface. Note that <literal>ve-+</literal> is a wildcard
|
interface. Note that <literal>ve-+</literal> is a wildcard that matches all
|
||||||
that matches all container interfaces.</para>
|
container interfaces.
|
||||||
|
</para>
|
||||||
<para>If you are using Network Manager, you need to explicitly prevent
|
|
||||||
it from managing container interfaces:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
If you are using Network Manager, you need to explicitly prevent it from
|
||||||
|
managing container interfaces:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
networking.networkmanager.unmanaged = [ "interface-name:ve-*" ];
|
networking.networkmanager.unmanaged = [ "interface-name:ve-*" ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,32 +3,32 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="ch-containers">
|
xml:id="ch-containers">
|
||||||
|
<title>Container Management</title>
|
||||||
<title>Container Management</title>
|
<para>
|
||||||
|
NixOS allows you to easily run other NixOS instances as
|
||||||
<para>NixOS allows you to easily run other NixOS instances as
|
<emphasis>containers</emphasis>. Containers are a light-weight approach to
|
||||||
<emphasis>containers</emphasis>. Containers are a light-weight
|
virtualisation that runs software in the container at the same speed as in
|
||||||
approach to virtualisation that runs software in the container at the
|
the host system. NixOS containers share the Nix store of the host, making
|
||||||
same speed as in the host system. NixOS containers share the Nix store
|
container creation very efficient.
|
||||||
of the host, making container creation very efficient.</para>
|
</para>
|
||||||
|
<warning>
|
||||||
<warning><para>Currently, NixOS containers are not perfectly isolated
|
<para>
|
||||||
from the host system. This means that a user with root access to the
|
Currently, NixOS containers are not perfectly isolated from the host system.
|
||||||
container can do things that affect the host. So you should not give
|
This means that a user with root access to the container can do things that
|
||||||
container root access to untrusted users.</para></warning>
|
affect the host. So you should not give container root access to untrusted
|
||||||
|
users.
|
||||||
<para>NixOS containers can be created in two ways: imperatively, using
|
</para>
|
||||||
the command <command>nixos-container</command>, and declaratively, by
|
</warning>
|
||||||
specifying them in your <filename>configuration.nix</filename>. The
|
<para>
|
||||||
declarative approach implies that containers get upgraded along with
|
NixOS containers can be created in two ways: imperatively, using the command
|
||||||
your host system when you run <command>nixos-rebuild</command>, which
|
<command>nixos-container</command>, and declaratively, by specifying them in
|
||||||
is often not what you want. By contrast, in the imperative approach,
|
your <filename>configuration.nix</filename>. The declarative approach implies
|
||||||
containers are configured and updated independently from the host
|
that containers get upgraded along with your host system when you run
|
||||||
system.</para>
|
<command>nixos-rebuild</command>, which is often not what you want. By
|
||||||
|
contrast, in the imperative approach, containers are configured and updated
|
||||||
<xi:include href="imperative-containers.xml" />
|
independently from the host system.
|
||||||
<xi:include href="declarative-containers.xml" />
|
</para>
|
||||||
<xi:include href="container-networking.xml" />
|
<xi:include href="imperative-containers.xml" />
|
||||||
|
<xi:include href="declarative-containers.xml" />
|
||||||
|
<xi:include href="container-networking.xml" />
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|
||||||
|
|||||||
@@ -3,20 +3,18 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-cgroups">
|
xml:id="sec-cgroups">
|
||||||
|
<title>Control Groups</title>
|
||||||
<title>Control Groups</title>
|
<para>
|
||||||
|
To keep track of the processes in a running system, systemd uses
|
||||||
<para>To keep track of the processes in a running system, systemd uses
|
<emphasis>control groups</emphasis> (cgroups). A control group is a set of
|
||||||
<emphasis>control groups</emphasis> (cgroups). A control group is a
|
processes used to allocate resources such as CPU, memory or I/O bandwidth.
|
||||||
set of processes used to allocate resources such as CPU, memory or I/O
|
There can be multiple control group hierarchies, allowing each kind of
|
||||||
bandwidth. There can be multiple control group hierarchies, allowing
|
resource to be managed independently.
|
||||||
each kind of resource to be managed independently.</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>The command <command>systemd-cgls</command> lists all control
|
The command <command>systemd-cgls</command> lists all control groups in the
|
||||||
groups in the <literal>systemd</literal> hierarchy, which is what
|
<literal>systemd</literal> hierarchy, which is what systemd uses to keep
|
||||||
systemd uses to keep track of the processes belonging to each service
|
track of the processes belonging to each service or user session:
|
||||||
or user session:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ systemd-cgls
|
$ systemd-cgls
|
||||||
├─user
|
├─user
|
||||||
@@ -34,40 +32,34 @@ $ systemd-cgls
|
|||||||
│ └─2376 dhcpcd --config /nix/store/f8dif8dsi2yaa70n03xir8r653776ka6-dhcpcd.conf
|
│ └─2376 dhcpcd --config /nix/store/f8dif8dsi2yaa70n03xir8r653776ka6-dhcpcd.conf
|
||||||
└─ <replaceable>...</replaceable>
|
└─ <replaceable>...</replaceable>
|
||||||
</screen>
|
</screen>
|
||||||
|
Similarly, <command>systemd-cgls cpu</command> shows the cgroups in the CPU
|
||||||
Similarly, <command>systemd-cgls cpu</command> shows the cgroups in
|
hierarchy, which allows per-cgroup CPU scheduling priorities. By default,
|
||||||
the CPU hierarchy, which allows per-cgroup CPU scheduling priorities.
|
every systemd service gets its own CPU cgroup, while all user sessions are in
|
||||||
By default, every systemd service gets its own CPU cgroup, while all
|
the top-level CPU cgroup. This ensures, for instance, that a thousand
|
||||||
user sessions are in the top-level CPU cgroup. This ensures, for
|
run-away processes in the <literal>httpd.service</literal> cgroup cannot
|
||||||
instance, that a thousand run-away processes in the
|
starve the CPU for one process in the <literal>postgresql.service</literal>
|
||||||
<literal>httpd.service</literal> cgroup cannot starve the CPU for one
|
cgroup. (By contrast, it they were in the same cgroup, then the PostgreSQL
|
||||||
process in the <literal>postgresql.service</literal> cgroup. (By
|
process would get 1/1001 of the cgroup’s CPU time.) You can limit a
|
||||||
contrast, it they were in the same cgroup, then the PostgreSQL process
|
service’s CPU share in <filename>configuration.nix</filename>:
|
||||||
would get 1/1001 of the cgroup’s CPU time.) You can limit a service’s
|
|
||||||
CPU share in <filename>configuration.nix</filename>:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<link linkend="opt-systemd.services._name_.serviceConfig">systemd.services.httpd.serviceConfig</link>.CPUShares = 512;
|
<link linkend="opt-systemd.services._name_.serviceConfig">systemd.services.httpd.serviceConfig</link>.CPUShares = 512;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
By default, every cgroup has 1024 CPU shares, so this will halve the CPU
|
||||||
By default, every cgroup has 1024 CPU shares, so this will halve the
|
allocation of the <literal>httpd.service</literal> cgroup.
|
||||||
CPU allocation of the <literal>httpd.service</literal> cgroup.</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>There also is a <literal>memory</literal> hierarchy that
|
There also is a <literal>memory</literal> hierarchy that controls memory
|
||||||
controls memory allocation limits; by default, all processes are in
|
allocation limits; by default, all processes are in the top-level cgroup, so
|
||||||
the top-level cgroup, so any service or session can exhaust all
|
any service or session can exhaust all available memory. Per-cgroup memory
|
||||||
available memory. Per-cgroup memory limits can be specified in
|
limits can be specified in <filename>configuration.nix</filename>; for
|
||||||
<filename>configuration.nix</filename>; for instance, to limit
|
instance, to limit <literal>httpd.service</literal> to 512 MiB of RAM
|
||||||
<literal>httpd.service</literal> to 512 MiB of RAM (excluding swap):
|
(excluding swap):
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<link linkend="opt-systemd.services._name_.serviceConfig">systemd.services.httpd.serviceConfig</link>.MemoryLimit = "512M";
|
<link linkend="opt-systemd.services._name_.serviceConfig">systemd.services.httpd.serviceConfig</link>.MemoryLimit = "512M";
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
</para>
|
<para>
|
||||||
|
The command <command>systemd-cgtop</command> shows a continuously updated
|
||||||
<para>The command <command>systemd-cgtop</command> shows a
|
list of all cgroups with their CPU and memory usage.
|
||||||
continuously updated list of all cgroups with their CPU and memory
|
</para>
|
||||||
usage.</para>
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,14 +3,13 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-declarative-containers">
|
xml:id="sec-declarative-containers">
|
||||||
|
<title>Declarative Container Specification</title>
|
||||||
|
|
||||||
<title>Declarative Container Specification</title>
|
<para>
|
||||||
|
You can also specify containers and their configuration in the host’s
|
||||||
<para>You can also specify containers and their configuration in the
|
<filename>configuration.nix</filename>. For example, the following specifies
|
||||||
host’s <filename>configuration.nix</filename>. For example, the
|
that there shall be a container named <literal>database</literal> running
|
||||||
following specifies that there shall be a container named
|
PostgreSQL:
|
||||||
<literal>database</literal> running PostgreSQL:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
containers.database =
|
containers.database =
|
||||||
{ config =
|
{ config =
|
||||||
@@ -20,18 +19,18 @@ containers.database =
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
If you run <literal>nixos-rebuild switch</literal>, the container will be
|
||||||
|
built. If the container was already running, it will be updated in place,
|
||||||
|
without rebooting. The container can be configured to start automatically by
|
||||||
|
setting <literal>containers.database.autoStart = true</literal> in its
|
||||||
|
configuration.
|
||||||
|
</para>
|
||||||
|
|
||||||
If you run <literal>nixos-rebuild switch</literal>, the container will
|
<para>
|
||||||
be built. If the container was already running, it will be
|
By default, declarative containers share the network namespace of the host,
|
||||||
updated in place, without rebooting. The container can be configured to
|
meaning that they can listen on (privileged) ports. However, they cannot
|
||||||
start automatically by setting <literal>containers.database.autoStart = true</literal>
|
change the network configuration. You can give a container its own network as
|
||||||
in its configuration.</para>
|
follows:
|
||||||
|
|
||||||
<para>By default, declarative containers share the network namespace
|
|
||||||
of the host, meaning that they can listen on (privileged)
|
|
||||||
ports. However, they cannot change the network configuration. You can
|
|
||||||
give a container its own network as follows:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
containers.database = {
|
containers.database = {
|
||||||
<link linkend="opt-containers._name_.privateNetwork">privateNetwork</link> = true;
|
<link linkend="opt-containers._name_.privateNetwork">privateNetwork</link> = true;
|
||||||
@@ -39,22 +38,23 @@ containers.database = {
|
|||||||
<link linkend="opt-containers._name_.localAddress">localAddress</link> = "192.168.100.11";
|
<link linkend="opt-containers._name_.localAddress">localAddress</link> = "192.168.100.11";
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
This gives the container a private virtual Ethernet interface with IP address
|
||||||
|
<literal>192.168.100.11</literal>, which is hooked up to a virtual Ethernet
|
||||||
|
interface on the host with IP address <literal>192.168.100.10</literal>. (See
|
||||||
|
the next section for details on container networking.)
|
||||||
|
</para>
|
||||||
|
|
||||||
This gives the container a private virtual Ethernet interface with IP
|
<para>
|
||||||
address <literal>192.168.100.11</literal>, which is hooked up to a
|
To disable the container, just remove it from
|
||||||
virtual Ethernet interface on the host with IP address
|
<filename>configuration.nix</filename> and run <literal>nixos-rebuild
|
||||||
<literal>192.168.100.10</literal>. (See the next section for details
|
switch</literal>. Note that this will not delete the root directory of the
|
||||||
on container networking.)</para>
|
container in <literal>/var/lib/containers</literal>. Containers can be
|
||||||
|
destroyed using the imperative method: <literal>nixos-container destroy
|
||||||
<para>To disable the container, just remove it from
|
foo</literal>.
|
||||||
<filename>configuration.nix</filename> and run <literal>nixos-rebuild
|
</para>
|
||||||
switch</literal>. Note that this will not delete the root directory of
|
|
||||||
the container in <literal>/var/lib/containers</literal>. Containers can be
|
|
||||||
destroyed using the imperative method: <literal>nixos-container destroy
|
|
||||||
foo</literal>.</para>
|
|
||||||
|
|
||||||
<para>Declarative containers can be started and stopped using the
|
|
||||||
corresponding systemd service, e.g. <literal>systemctl start
|
|
||||||
container@database</literal>.</para>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Declarative containers can be started and stopped using the corresponding
|
||||||
|
systemd service, e.g. <literal>systemctl start container@database</literal>.
|
||||||
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,101 +3,85 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-imperative-containers">
|
xml:id="sec-imperative-containers">
|
||||||
|
<title>Imperative Container Management</title>
|
||||||
|
|
||||||
<title>Imperative Container Management</title>
|
<para>
|
||||||
|
We’ll cover imperative container management using
|
||||||
<para>We’ll cover imperative container management using
|
<command>nixos-container</command> first. Be aware that container management
|
||||||
<command>nixos-container</command> first.
|
is currently only possible as <literal>root</literal>.
|
||||||
Be aware that container management is currently only possible
|
</para>
|
||||||
as <literal>root</literal>.</para>
|
|
||||||
|
|
||||||
<para>You create a container with
|
|
||||||
identifier <literal>foo</literal> as follows:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
You create a container with identifier <literal>foo</literal> as follows:
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-container create foo
|
# nixos-container create foo
|
||||||
</screen>
|
</screen>
|
||||||
|
This creates the container’s root directory in
|
||||||
This creates the container’s root directory in
|
<filename>/var/lib/containers/foo</filename> and a small configuration file
|
||||||
<filename>/var/lib/containers/foo</filename> and a small configuration
|
in <filename>/etc/containers/foo.conf</filename>. It also builds the
|
||||||
file in <filename>/etc/containers/foo.conf</filename>. It also builds
|
container’s initial system configuration and stores it in
|
||||||
the container’s initial system configuration and stores it in
|
<filename>/nix/var/nix/profiles/per-container/foo/system</filename>. You can
|
||||||
<filename>/nix/var/nix/profiles/per-container/foo/system</filename>. You
|
modify the initial configuration of the container on the command line. For
|
||||||
can modify the initial configuration of the container on the command
|
instance, to create a container that has <command>sshd</command> running,
|
||||||
line. For instance, to create a container that has
|
with the given public key for <literal>root</literal>:
|
||||||
<command>sshd</command> running, with the given public key for
|
|
||||||
<literal>root</literal>:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-container create foo --config '
|
# nixos-container create foo --config '
|
||||||
<xref linkend="opt-services.openssh.enable"/> = true;
|
<xref linkend="opt-services.openssh.enable"/> = true;
|
||||||
<link linkend="opt-users.users._name__.openssh.authorizedKeys.keys">users.extraUsers.root.openssh.authorizedKeys.keys</link> = ["ssh-dss AAAAB3N…"];
|
<link linkend="opt-users.users._name__.openssh.authorizedKeys.keys">users.extraUsers.root.openssh.authorizedKeys.keys</link> = ["ssh-dss AAAAB3N…"];
|
||||||
'
|
'
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
|
Creating a container does not start it. To start the container, run:
|
||||||
<para>Creating a container does not start it. To start the container,
|
|
||||||
run:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-container start foo
|
# nixos-container start foo
|
||||||
</screen>
|
</screen>
|
||||||
|
This command will return as soon as the container has booted and has reached
|
||||||
This command will return as soon as the container has booted and has
|
<literal>multi-user.target</literal>. On the host, the container runs within
|
||||||
reached <literal>multi-user.target</literal>. On the host, the
|
a systemd unit called
|
||||||
container runs within a systemd unit called
|
<literal>container@<replaceable>container-name</replaceable>.service</literal>.
|
||||||
<literal>container@<replaceable>container-name</replaceable>.service</literal>.
|
Thus, if something went wrong, you can get status info using
|
||||||
Thus, if something went wrong, you can get status info using
|
<command>systemctl</command>:
|
||||||
<command>systemctl</command>:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# systemctl status container@foo
|
# systemctl status container@foo
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
|
If the container has started successfully, you can log in as root using the
|
||||||
<para>If the container has started successfully, you can log in as
|
<command>root-login</command> operation:
|
||||||
root using the <command>root-login</command> operation:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-container root-login foo
|
# nixos-container root-login foo
|
||||||
[root@foo:~]#
|
[root@foo:~]#
|
||||||
</screen>
|
</screen>
|
||||||
|
Note that only root on the host can do this (since there is no
|
||||||
Note that only root on the host can do this (since there is no
|
authentication). You can also get a regular login prompt using the
|
||||||
authentication). You can also get a regular login prompt using the
|
<command>login</command> operation, which is available to all users on the
|
||||||
<command>login</command> operation, which is available to all users on
|
host:
|
||||||
the host:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-container login foo
|
# nixos-container login foo
|
||||||
foo login: alice
|
foo login: alice
|
||||||
Password: ***
|
Password: ***
|
||||||
</screen>
|
</screen>
|
||||||
|
With <command>nixos-container run</command>, you can execute arbitrary
|
||||||
With <command>nixos-container run</command>, you can execute arbitrary
|
commands in the container:
|
||||||
commands in the container:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-container run foo -- uname -a
|
# nixos-container run foo -- uname -a
|
||||||
Linux foo 3.4.82 #1-NixOS SMP Thu Mar 20 14:44:05 UTC 2014 x86_64 GNU/Linux
|
Linux foo 3.4.82 #1-NixOS SMP Thu Mar 20 14:44:05 UTC 2014 x86_64 GNU/Linux
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
|
There are several ways to change the configuration of the container. First,
|
||||||
<para>There are several ways to change the configuration of the
|
on the host, you can edit
|
||||||
container. First, on the host, you can edit
|
<literal>/var/lib/container/<replaceable>name</replaceable>/etc/nixos/configuration.nix</literal>,
|
||||||
<literal>/var/lib/container/<replaceable>name</replaceable>/etc/nixos/configuration.nix</literal>,
|
and run
|
||||||
and run
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-container update foo
|
# nixos-container update foo
|
||||||
</screen>
|
</screen>
|
||||||
|
This will build and activate the new configuration. You can also specify a
|
||||||
This will build and activate the new configuration. You can also
|
new configuration on the command line:
|
||||||
specify a new configuration on the command line:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-container update foo --config '
|
# nixos-container update foo --config '
|
||||||
<xref linkend="opt-services.httpd.enable"/> = true;
|
<xref linkend="opt-services.httpd.enable"/> = true;
|
||||||
@@ -108,26 +92,25 @@ specify a new configuration on the command line:
|
|||||||
# curl http://$(nixos-container show-ip foo)/
|
# curl http://$(nixos-container show-ip foo)/
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">…
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">…
|
||||||
</screen>
|
</screen>
|
||||||
|
However, note that this will overwrite the container’s
|
||||||
|
<filename>/etc/nixos/configuration.nix</filename>.
|
||||||
|
</para>
|
||||||
|
|
||||||
However, note that this will overwrite the container’s
|
<para>
|
||||||
<filename>/etc/nixos/configuration.nix</filename>.</para>
|
Alternatively, you can change the configuration from within the container
|
||||||
|
itself by running <command>nixos-rebuild switch</command> inside the
|
||||||
<para>Alternatively, you can change the configuration from within the
|
container. Note that the container by default does not have a copy of the
|
||||||
container itself by running <command>nixos-rebuild switch</command>
|
NixOS channel, so you should run <command>nix-channel --update</command>
|
||||||
inside the container. Note that the container by default does not have
|
first.
|
||||||
a copy of the NixOS channel, so you should run <command>nix-channel
|
</para>
|
||||||
--update</command> first.</para>
|
|
||||||
|
|
||||||
<para>Containers can be stopped and started using
|
|
||||||
<literal>nixos-container stop</literal> and <literal>nixos-container
|
|
||||||
start</literal>, respectively, or by using
|
|
||||||
<command>systemctl</command> on the container’s service unit. To
|
|
||||||
destroy a container, including its file system, do
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Containers can be stopped and started using <literal>nixos-container
|
||||||
|
stop</literal> and <literal>nixos-container start</literal>, respectively, or
|
||||||
|
by using <command>systemctl</command> on the container’s service unit. To
|
||||||
|
destroy a container, including its file system, do
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-container destroy foo
|
# nixos-container destroy foo
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,26 +3,20 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-logging">
|
xml:id="sec-logging">
|
||||||
|
<title>Logging</title>
|
||||||
<title>Logging</title>
|
<para>
|
||||||
|
System-wide logging is provided by systemd’s <emphasis>journal</emphasis>,
|
||||||
<para>System-wide logging is provided by systemd’s
|
which subsumes traditional logging daemons such as syslogd and klogd. Log
|
||||||
<emphasis>journal</emphasis>, which subsumes traditional logging
|
entries are kept in binary files in <filename>/var/log/journal/</filename>.
|
||||||
daemons such as syslogd and klogd. Log entries are kept in binary
|
The command <literal>journalctl</literal> allows you to see the contents of
|
||||||
files in <filename>/var/log/journal/</filename>. The command
|
the journal. For example,
|
||||||
<literal>journalctl</literal> allows you to see the contents of the
|
|
||||||
journal. For example,
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ journalctl -b
|
$ journalctl -b
|
||||||
</screen>
|
</screen>
|
||||||
|
shows all journal entries since the last reboot. (The output of
|
||||||
shows all journal entries since the last reboot. (The output of
|
<command>journalctl</command> is piped into <command>less</command> by
|
||||||
<command>journalctl</command> is piped into <command>less</command> by
|
default.) You can use various options and match operators to restrict output
|
||||||
default.) You can use various options and match operators to restrict
|
to messages of interest. For instance, to get all messages from PostgreSQL:
|
||||||
output to messages of interest. For instance, to get all messages
|
|
||||||
from PostgreSQL:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ journalctl -u postgresql.service
|
$ journalctl -u postgresql.service
|
||||||
-- Logs begin at Mon, 2013-01-07 13:28:01 CET, end at Tue, 2013-01-08 01:09:57 CET. --
|
-- Logs begin at Mon, 2013-01-07 13:28:01 CET, end at Tue, 2013-01-08 01:09:57 CET. --
|
||||||
@@ -32,21 +26,18 @@ Jan 07 15:44:14 hagbard postgres[2681]: [2-1] LOG: database system is shut down
|
|||||||
Jan 07 15:45:10 hagbard postgres[2532]: [1-1] LOG: database system was shut down at 2013-01-07 15:44:14 CET
|
Jan 07 15:45:10 hagbard postgres[2532]: [1-1] LOG: database system was shut down at 2013-01-07 15:44:14 CET
|
||||||
Jan 07 15:45:13 hagbard postgres[2500]: [1-1] LOG: database system is ready to accept connections
|
Jan 07 15:45:13 hagbard postgres[2500]: [1-1] LOG: database system is ready to accept connections
|
||||||
</screen>
|
</screen>
|
||||||
|
Or to get all messages since the last reboot that have at least a
|
||||||
Or to get all messages since the last reboot that have at least a
|
“critical” severity level:
|
||||||
“critical” severity level:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ journalctl -b -p crit
|
$ journalctl -b -p crit
|
||||||
Dec 17 21:08:06 mandark sudo[3673]: pam_unix(sudo:auth): auth could not identify password for [alice]
|
Dec 17 21:08:06 mandark sudo[3673]: pam_unix(sudo:auth): auth could not identify password for [alice]
|
||||||
Dec 29 01:30:22 mandark kernel[6131]: [1053513.909444] CPU6: Core temperature above threshold, cpu clock throttled (total events = 1)
|
Dec 29 01:30:22 mandark kernel[6131]: [1053513.909444] CPU6: Core temperature above threshold, cpu clock throttled (total events = 1)
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
</para>
|
<para>
|
||||||
|
The system journal is readable by root and by users in the
|
||||||
<para>The system journal is readable by root and by users in the
|
<literal>wheel</literal> and <literal>systemd-journal</literal> groups. All
|
||||||
<literal>wheel</literal> and <literal>systemd-journal</literal>
|
users have a private journal that can be read using
|
||||||
groups. All users have a private journal that can be read using
|
<command>journalctl</command>.
|
||||||
<command>journalctl</command>.</para>
|
</para>
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
@@ -3,16 +3,14 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-maintenance-mode">
|
xml:id="sec-maintenance-mode">
|
||||||
|
<title>Maintenance Mode</title>
|
||||||
|
|
||||||
<title>Maintenance Mode</title>
|
<para>
|
||||||
|
You can enter rescue mode by running:
|
||||||
<para>You can enter rescue mode by running:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# systemctl rescue</screen>
|
# systemctl rescue</screen>
|
||||||
|
This will eventually give you a single-user root shell. Systemd will stop
|
||||||
This will eventually give you a single-user root shell. Systemd will
|
(almost) all system services. To get out of maintenance mode, just exit from
|
||||||
stop (almost) all system services. To get out of maintenance mode,
|
the rescue shell.
|
||||||
just exit from the rescue shell.</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,31 +3,25 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-nix-network-issues">
|
xml:id="sec-nix-network-issues">
|
||||||
|
<title>Network Problems</title>
|
||||||
|
|
||||||
<title>Network Problems</title>
|
<para>
|
||||||
|
Nix uses a so-called <emphasis>binary cache</emphasis> to optimise building a
|
||||||
<para>Nix uses a so-called <emphasis>binary cache</emphasis> to
|
package from source into downloading it as a pre-built binary. That is,
|
||||||
optimise building a package from source into downloading it as a
|
whenever a command like <command>nixos-rebuild</command> needs a path in the
|
||||||
pre-built binary. That is, whenever a command like
|
Nix store, Nix will try to download that path from the Internet rather than
|
||||||
<command>nixos-rebuild</command> needs a path in the Nix store, Nix
|
build it from source. The default binary cache is
|
||||||
will try to download that path from the Internet rather than build it
|
<uri>https://cache.nixos.org/</uri>. If this cache is unreachable, Nix
|
||||||
from source. The default binary cache is
|
operations may take a long time due to HTTP connection timeouts. You can
|
||||||
<uri>https://cache.nixos.org/</uri>. If this cache is unreachable,
|
disable the use of the binary cache by adding <option>--option
|
||||||
Nix operations may take a long time due to HTTP connection timeouts.
|
use-binary-caches false</option>, e.g.
|
||||||
You can disable the use of the binary cache by adding <option>--option
|
|
||||||
use-binary-caches false</option>, e.g.
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-rebuild switch --option use-binary-caches false
|
# nixos-rebuild switch --option use-binary-caches false
|
||||||
</screen>
|
</screen>
|
||||||
|
If you have an alternative binary cache at your disposal, you can use it
|
||||||
If you have an alternative binary cache at your disposal, you can use
|
instead:
|
||||||
it instead:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-rebuild switch --option binary-caches http://my-cache.example.org/
|
# nixos-rebuild switch --option binary-caches http://my-cache.example.org/
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,42 +3,33 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-rebooting">
|
xml:id="sec-rebooting">
|
||||||
|
<title>Rebooting and Shutting Down</title>
|
||||||
<title>Rebooting and Shutting Down</title>
|
<para>
|
||||||
|
The system can be shut down (and automatically powered off) by doing:
|
||||||
<para>The system can be shut down (and automatically powered off) by
|
|
||||||
doing:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# shutdown
|
# shutdown
|
||||||
</screen>
|
</screen>
|
||||||
|
This is equivalent to running <command>systemctl poweroff</command>.
|
||||||
This is equivalent to running <command>systemctl
|
</para>
|
||||||
poweroff</command>.</para>
|
<para>
|
||||||
|
To reboot the system, run
|
||||||
<para>To reboot the system, run
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# reboot
|
# reboot
|
||||||
</screen>
|
</screen>
|
||||||
|
which is equivalent to <command>systemctl reboot</command>. Alternatively,
|
||||||
which is equivalent to <command>systemctl reboot</command>.
|
you can quickly reboot the system using <literal>kexec</literal>, which
|
||||||
Alternatively, you can quickly reboot the system using
|
bypasses the BIOS by directly loading the new kernel into memory:
|
||||||
<literal>kexec</literal>, which bypasses the BIOS by directly loading
|
|
||||||
the new kernel into memory:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# systemctl kexec
|
# systemctl kexec
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
</para>
|
<para>
|
||||||
|
The machine can be suspended to RAM (if supported) using <command>systemctl
|
||||||
<para>The machine can be suspended to RAM (if supported) using
|
suspend</command>, and suspended to disk using <command>systemctl
|
||||||
<command>systemctl suspend</command>, and suspended to disk using
|
hibernate</command>.
|
||||||
<command>systemctl hibernate</command>.</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>These commands can be run by any user who is logged in locally,
|
These commands can be run by any user who is logged in locally, i.e. on a
|
||||||
i.e. on a virtual console or in X11; otherwise, the user is asked for
|
virtual console or in X11; otherwise, the user is asked for authentication.
|
||||||
authentication.</para>
|
</para>
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,46 +3,39 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-rollback">
|
xml:id="sec-rollback">
|
||||||
|
<title>Rolling Back Configuration Changes</title>
|
||||||
|
|
||||||
<title>Rolling Back Configuration Changes</title>
|
<para>
|
||||||
|
After running <command>nixos-rebuild</command> to switch to a new
|
||||||
<para>After running <command>nixos-rebuild</command> to switch to a
|
configuration, you may find that the new configuration doesn’t work very
|
||||||
new configuration, you may find that the new configuration doesn’t
|
well. In that case, there are several ways to return to a previous
|
||||||
work very well. In that case, there are several ways to return to a
|
configuration.
|
||||||
previous configuration.</para>
|
</para>
|
||||||
|
|
||||||
<para>First, the GRUB boot manager allows you to boot into any
|
|
||||||
previous configuration that hasn’t been garbage-collected. These
|
|
||||||
configurations can be found under the GRUB submenu “NixOS - All
|
|
||||||
configurations”. This is especially useful if the new configuration
|
|
||||||
fails to boot. After the system has booted, you can make the selected
|
|
||||||
configuration the default for subsequent boots:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
First, the GRUB boot manager allows you to boot into any previous
|
||||||
|
configuration that hasn’t been garbage-collected. These configurations can
|
||||||
|
be found under the GRUB submenu “NixOS - All configurations”. This is
|
||||||
|
especially useful if the new configuration fails to boot. After the system
|
||||||
|
has booted, you can make the selected configuration the default for
|
||||||
|
subsequent boots:
|
||||||
<screen>
|
<screen>
|
||||||
# /run/current-system/bin/switch-to-configuration boot</screen>
|
# /run/current-system/bin/switch-to-configuration boot</screen>
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
|
Second, you can switch to the previous configuration in a running system:
|
||||||
<para>Second, you can switch to the previous configuration in a running
|
|
||||||
system:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-rebuild switch --rollback</screen>
|
# nixos-rebuild switch --rollback</screen>
|
||||||
|
This is equivalent to running:
|
||||||
This is equivalent to running:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# /nix/var/nix/profiles/system-<replaceable>N</replaceable>-link/bin/switch-to-configuration switch</screen>
|
# /nix/var/nix/profiles/system-<replaceable>N</replaceable>-link/bin/switch-to-configuration switch</screen>
|
||||||
|
where <replaceable>N</replaceable> is the number of the NixOS system
|
||||||
where <replaceable>N</replaceable> is the number of the NixOS system
|
configuration. To get a list of the available configurations, do:
|
||||||
configuration. To get a list of the available configurations, do:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ ls -l /nix/var/nix/profiles/system-*-link
|
$ ls -l /nix/var/nix/profiles/system-*-link
|
||||||
<replaceable>...</replaceable>
|
<replaceable>...</replaceable>
|
||||||
lrwxrwxrwx 1 root root 78 Aug 12 13:54 /nix/var/nix/profiles/system-268-link -> /nix/store/202b...-nixos-13.07pre4932_5a676e4-4be1055
|
lrwxrwxrwx 1 root root 78 Aug 12 13:54 /nix/var/nix/profiles/system-268-link -> /nix/store/202b...-nixos-13.07pre4932_5a676e4-4be1055
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,22 +3,19 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="ch-running">
|
xml:id="ch-running">
|
||||||
|
<title>Administration</title>
|
||||||
<title>Administration</title>
|
<partintro>
|
||||||
|
<para>
|
||||||
<partintro>
|
This chapter describes various aspects of managing a running NixOS system,
|
||||||
<para>This chapter describes various aspects of managing a running
|
such as how to use the <command>systemd</command> service manager.
|
||||||
NixOS system, such as how to use the <command>systemd</command>
|
</para>
|
||||||
service manager.</para>
|
</partintro>
|
||||||
</partintro>
|
<xi:include href="service-mgmt.xml" />
|
||||||
|
<xi:include href="rebooting.xml" />
|
||||||
<xi:include href="service-mgmt.xml" />
|
<xi:include href="user-sessions.xml" />
|
||||||
<xi:include href="rebooting.xml" />
|
<xi:include href="control-groups.xml" />
|
||||||
<xi:include href="user-sessions.xml" />
|
<xi:include href="logging.xml" />
|
||||||
<xi:include href="control-groups.xml" />
|
<xi:include href="cleaning-store.xml" />
|
||||||
<xi:include href="logging.xml" />
|
<xi:include href="containers.xml" />
|
||||||
<xi:include href="cleaning-store.xml" />
|
<xi:include href="troubleshooting.xml" />
|
||||||
<xi:include href="containers.xml" />
|
|
||||||
<xi:include href="troubleshooting.xml" />
|
|
||||||
|
|
||||||
</part>
|
</part>
|
||||||
|
|||||||
@@ -3,26 +3,23 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-systemctl">
|
xml:id="sec-systemctl">
|
||||||
|
<title>Service Management</title>
|
||||||
<title>Service Management</title>
|
<para>
|
||||||
|
In NixOS, all system services are started and monitored using the systemd
|
||||||
<para>In NixOS, all system services are started and monitored using
|
program. Systemd is the “init” process of the system (i.e. PID 1), the
|
||||||
the systemd program. Systemd is the “init” process of the system
|
parent of all other processes. It manages a set of so-called “units”,
|
||||||
(i.e. PID 1), the parent of all other processes. It manages a set of
|
which can be things like system services (programs), but also mount points,
|
||||||
so-called “units”, which can be things like system services
|
swap files, devices, targets (groups of units) and more. Units can have
|
||||||
(programs), but also mount points, swap files, devices, targets
|
complex dependencies; for instance, one unit can require that another unit
|
||||||
(groups of units) and more. Units can have complex dependencies; for
|
must be successfully started before the first unit can be started. When the
|
||||||
instance, one unit can require that another unit must be successfully
|
system boots, it starts a unit named <literal>default.target</literal>; the
|
||||||
started before the first unit can be started. When the system boots,
|
dependencies of this unit cause all system services to be started, file
|
||||||
it starts a unit named <literal>default.target</literal>; the
|
systems to be mounted, swap files to be activated, and so on.
|
||||||
dependencies of this unit cause all system services to be started,
|
</para>
|
||||||
file systems to be mounted, swap files to be activated, and so
|
<para>
|
||||||
on.</para>
|
The command <command>systemctl</command> is the main way to interact with
|
||||||
|
<command>systemd</command>. Without any arguments, it shows the status of
|
||||||
<para>The command <command>systemctl</command> is the main way to
|
active units:
|
||||||
interact with <command>systemd</command>. Without any arguments, it
|
|
||||||
shows the status of active units:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ systemctl
|
$ systemctl
|
||||||
-.mount loaded active mounted /
|
-.mount loaded active mounted /
|
||||||
@@ -31,12 +28,10 @@ sshd.service loaded active running SSH Daemon
|
|||||||
graphical.target loaded active active Graphical Interface
|
graphical.target loaded active active Graphical Interface
|
||||||
<replaceable>...</replaceable>
|
<replaceable>...</replaceable>
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
</para>
|
<para>
|
||||||
|
You can ask for detailed status information about a unit, for instance, the
|
||||||
<para>You can ask for detailed status information about a unit, for
|
PostgreSQL database service:
|
||||||
instance, the PostgreSQL database service:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ systemctl status postgresql.service
|
$ systemctl status postgresql.service
|
||||||
postgresql.service - PostgreSQL Server
|
postgresql.service - PostgreSQL Server
|
||||||
@@ -56,28 +51,22 @@ Jan 07 15:55:57 hagbard postgres[2390]: [1-1] LOG: database system is ready to
|
|||||||
Jan 07 15:55:57 hagbard postgres[2420]: [1-1] LOG: autovacuum launcher started
|
Jan 07 15:55:57 hagbard postgres[2420]: [1-1] LOG: autovacuum launcher started
|
||||||
Jan 07 15:55:57 hagbard systemd[1]: Started PostgreSQL Server.
|
Jan 07 15:55:57 hagbard systemd[1]: Started PostgreSQL Server.
|
||||||
</screen>
|
</screen>
|
||||||
|
Note that this shows the status of the unit (active and running), all the
|
||||||
Note that this shows the status of the unit (active and running), all
|
processes belonging to the service, as well as the most recent log messages
|
||||||
the processes belonging to the service, as well as the most recent log
|
from the service.
|
||||||
messages from the service.
|
</para>
|
||||||
|
<para>
|
||||||
</para>
|
Units can be stopped, started or restarted:
|
||||||
|
|
||||||
<para>Units can be stopped, started or restarted:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# systemctl stop postgresql.service
|
# systemctl stop postgresql.service
|
||||||
# systemctl start postgresql.service
|
# systemctl start postgresql.service
|
||||||
# systemctl restart postgresql.service
|
# systemctl restart postgresql.service
|
||||||
</screen>
|
</screen>
|
||||||
|
These operations are synchronous: they wait until the service has finished
|
||||||
These operations are synchronous: they wait until the service has
|
starting or stopping (or has failed). Starting a unit will cause the
|
||||||
finished starting or stopping (or has failed). Starting a unit will
|
dependencies of that unit to be started as well (if necessary).
|
||||||
cause the dependencies of that unit to be started as well (if
|
</para>
|
||||||
necessary).</para>
|
|
||||||
|
|
||||||
<!-- - cgroups: each service and user session is a cgroup
|
<!-- - cgroups: each service and user session is a cgroup
|
||||||
|
|
||||||
- cgroup resource management -->
|
- cgroup resource management -->
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,35 +3,34 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-nix-store-corruption">
|
xml:id="sec-nix-store-corruption">
|
||||||
|
<title>Nix Store Corruption</title>
|
||||||
|
|
||||||
<title>Nix Store Corruption</title>
|
<para>
|
||||||
|
After a system crash, it’s possible for files in the Nix store to become
|
||||||
<para>After a system crash, it’s possible for files in the Nix store
|
corrupted. (For instance, the Ext4 file system has the tendency to replace
|
||||||
to become corrupted. (For instance, the Ext4 file system has the
|
un-synced files with zero bytes.) NixOS tries hard to prevent this from
|
||||||
tendency to replace un-synced files with zero bytes.) NixOS tries
|
happening: it performs a <command>sync</command> before switching to a new
|
||||||
hard to prevent this from happening: it performs a
|
configuration, and Nix’s database is fully transactional. If corruption
|
||||||
<command>sync</command> before switching to a new configuration, and
|
still occurs, you may be able to fix it automatically.
|
||||||
Nix’s database is fully transactional. If corruption still occurs,
|
</para>
|
||||||
you may be able to fix it automatically.</para>
|
|
||||||
|
|
||||||
<para>If the corruption is in a path in the closure of the NixOS
|
|
||||||
system configuration, you can fix it by doing
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
If the corruption is in a path in the closure of the NixOS system
|
||||||
|
configuration, you can fix it by doing
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-rebuild switch --repair
|
# nixos-rebuild switch --repair
|
||||||
</screen>
|
</screen>
|
||||||
|
This will cause Nix to check every path in the closure, and if its
|
||||||
|
cryptographic hash differs from the hash recorded in Nix’s database, the
|
||||||
|
path is rebuilt or redownloaded.
|
||||||
|
</para>
|
||||||
|
|
||||||
This will cause Nix to check every path in the closure, and if its
|
<para>
|
||||||
cryptographic hash differs from the hash recorded in Nix’s database,
|
You can also scan the entire Nix store for corrupt paths:
|
||||||
the path is rebuilt or redownloaded.</para>
|
|
||||||
|
|
||||||
<para>You can also scan the entire Nix store for corrupt paths:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nix-store --verify --check-contents --repair
|
# nix-store --verify --check-contents --repair
|
||||||
</screen>
|
</screen>
|
||||||
|
Any corrupt paths will be redownloaded if they’re available in a binary
|
||||||
Any corrupt paths will be redownloaded if they’re available in a
|
cache; otherwise, they cannot be repaired.
|
||||||
binary cache; otherwise, they cannot be repaired.</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,16 +3,14 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="ch-troubleshooting">
|
xml:id="ch-troubleshooting">
|
||||||
|
<title>Troubleshooting</title>
|
||||||
<title>Troubleshooting</title>
|
<para>
|
||||||
|
This chapter describes solutions to common problems you might encounter when
|
||||||
<para>This chapter describes solutions to common problems you might
|
you manage your NixOS system.
|
||||||
encounter when you manage your NixOS system.</para>
|
</para>
|
||||||
|
<xi:include href="boot-problems.xml" />
|
||||||
<xi:include href="boot-problems.xml" />
|
<xi:include href="maintenance-mode.xml" />
|
||||||
<xi:include href="maintenance-mode.xml" />
|
<xi:include href="rollback.xml" />
|
||||||
<xi:include href="rollback.xml" />
|
<xi:include href="store-corruption.xml" />
|
||||||
<xi:include href="store-corruption.xml" />
|
<xi:include href="network-problems.xml" />
|
||||||
<xi:include href="network-problems.xml" />
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,14 +3,12 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-user-sessions">
|
xml:id="sec-user-sessions">
|
||||||
|
<title>User Sessions</title>
|
||||||
<title>User Sessions</title>
|
<para>
|
||||||
|
Systemd keeps track of all users who are logged into the system (e.g. on a
|
||||||
<para>Systemd keeps track of all users who are logged into the system
|
virtual console or remotely via SSH). The command <command>loginctl</command>
|
||||||
(e.g. on a virtual console or remotely via SSH). The command
|
allows querying and manipulating user sessions. For instance, to list all
|
||||||
<command>loginctl</command> allows querying and manipulating user
|
user sessions:
|
||||||
sessions. For instance, to list all user sessions:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ loginctl
|
$ loginctl
|
||||||
SESSION UID USER SEAT
|
SESSION UID USER SEAT
|
||||||
@@ -18,12 +16,10 @@ $ loginctl
|
|||||||
c3 0 root seat0
|
c3 0 root seat0
|
||||||
c4 500 alice
|
c4 500 alice
|
||||||
</screen>
|
</screen>
|
||||||
|
This shows that two users are logged in locally, while another is logged in
|
||||||
This shows that two users are logged in locally, while another is
|
remotely. (“Seats” are essentially the combinations of displays and input
|
||||||
logged in remotely. (“Seats” are essentially the combinations of
|
devices attached to the system; usually, there is only one seat.) To get
|
||||||
displays and input devices attached to the system; usually, there is
|
information about a session:
|
||||||
only one seat.) To get information about a session:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ loginctl session-status c3
|
$ loginctl session-status c3
|
||||||
c3 - root (0)
|
c3 - root (0)
|
||||||
@@ -38,16 +34,12 @@ c3 - root (0)
|
|||||||
├─10339 -bash
|
├─10339 -bash
|
||||||
└─10355 w3m nixos.org
|
└─10355 w3m nixos.org
|
||||||
</screen>
|
</screen>
|
||||||
|
This shows that the user is logged in on virtual console 3. It also lists the
|
||||||
This shows that the user is logged in on virtual console 3. It also
|
processes belonging to this session. Since systemd keeps track of this, you
|
||||||
lists the processes belonging to this session. Since systemd keeps
|
can terminate a session in a way that ensures that all the session’s
|
||||||
track of this, you can terminate a session in a way that ensures that
|
processes are gone:
|
||||||
all the session’s processes are gone:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# loginctl terminate-session c3
|
# loginctl terminate-session c3
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,12 +3,11 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-module-abstractions">
|
xml:id="sec-module-abstractions">
|
||||||
|
<title>Abstractions</title>
|
||||||
|
|
||||||
<title>Abstractions</title>
|
<para>
|
||||||
|
If you find yourself repeating yourself over and over, it’s time to
|
||||||
<para>If you find yourself repeating yourself over and over, it’s time
|
abstract. Take, for instance, this Apache HTTP Server configuration:
|
||||||
to abstract. Take, for instance, this Apache HTTP Server configuration:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
<xref linkend="opt-services.httpd.virtualHosts"/> =
|
<xref linkend="opt-services.httpd.virtualHosts"/> =
|
||||||
@@ -28,11 +27,9 @@ to abstract. Take, for instance, this Apache HTTP Server configuration:
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
It defines two virtual hosts with nearly identical configuration; the only
|
||||||
It defines two virtual hosts with nearly identical configuration; the
|
difference is that the second one has SSL enabled. To prevent this
|
||||||
only difference is that the second one has SSL enabled. To prevent
|
duplication, we can use a <literal>let</literal>:
|
||||||
this duplication, we can use a <literal>let</literal>:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
let
|
let
|
||||||
exampleOrgCommon =
|
exampleOrgCommon =
|
||||||
@@ -53,17 +50,16 @@ in
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
The <literal>let exampleOrgCommon = <replaceable>...</replaceable></literal>
|
||||||
|
defines a variable named <literal>exampleOrgCommon</literal>. The
|
||||||
|
<literal>//</literal> operator merges two attribute sets, so the
|
||||||
|
configuration of the second virtual host is the set
|
||||||
|
<literal>exampleOrgCommon</literal> extended with the SSL options.
|
||||||
|
</para>
|
||||||
|
|
||||||
The <literal>let exampleOrgCommon =
|
<para>
|
||||||
<replaceable>...</replaceable></literal> defines a variable named
|
You can write a <literal>let</literal> wherever an expression is allowed.
|
||||||
<literal>exampleOrgCommon</literal>. The <literal>//</literal>
|
Thus, you also could have written:
|
||||||
operator merges two attribute sets, so the configuration of the second
|
|
||||||
virtual host is the set <literal>exampleOrgCommon</literal> extended
|
|
||||||
with the SSL options.</para>
|
|
||||||
|
|
||||||
<para>You can write a <literal>let</literal> wherever an expression is
|
|
||||||
allowed. Thus, you also could have written:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
<xref linkend="opt-services.httpd.virtualHosts"/> =
|
<xref linkend="opt-services.httpd.virtualHosts"/> =
|
||||||
@@ -73,17 +69,16 @@ allowed. Thus, you also could have written:
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
but not <literal>{ let exampleOrgCommon = <replaceable>...</replaceable>; in
|
||||||
|
<replaceable>...</replaceable>; }</literal> since attributes (as opposed to
|
||||||
|
attribute values) are not expressions.
|
||||||
|
</para>
|
||||||
|
|
||||||
but not <literal>{ let exampleOrgCommon =
|
<para>
|
||||||
<replaceable>...</replaceable>; in <replaceable>...</replaceable>;
|
<emphasis>Functions</emphasis> provide another method of abstraction. For
|
||||||
}</literal> since attributes (as opposed to attribute values) are not
|
instance, suppose that we want to generate lots of different virtual hosts,
|
||||||
expressions.</para>
|
all with identical configuration except for the host name. This can be done
|
||||||
|
as follows:
|
||||||
<para><emphasis>Functions</emphasis> provide another method of
|
|
||||||
abstraction. For instance, suppose that we want to generate lots of
|
|
||||||
different virtual hosts, all with identical configuration except for
|
|
||||||
the host name. This can be done as follows:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
<xref linkend="opt-services.httpd.virtualHosts"/> =
|
<xref linkend="opt-services.httpd.virtualHosts"/> =
|
||||||
@@ -101,16 +96,15 @@ the host name. This can be done as follows:
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Here, <varname>makeVirtualHost</varname> is a function that takes a single
|
||||||
|
argument <literal>name</literal> and returns the configuration for a virtual
|
||||||
|
host. That function is then called for several names to produce the list of
|
||||||
|
virtual host configurations.
|
||||||
|
</para>
|
||||||
|
|
||||||
Here, <varname>makeVirtualHost</varname> is a function that takes a
|
<para>
|
||||||
single argument <literal>name</literal> and returns the configuration
|
We can further improve on this by using the function <varname>map</varname>,
|
||||||
for a virtual host. That function is then called for several names to
|
which applies another function to every element in a list:
|
||||||
produce the list of virtual host configurations.</para>
|
|
||||||
|
|
||||||
<para>We can further improve on this by using the function
|
|
||||||
<varname>map</varname>, which applies another function to every
|
|
||||||
element in a list:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
<xref linkend="opt-services.httpd.virtualHosts"/> =
|
<xref linkend="opt-services.httpd.virtualHosts"/> =
|
||||||
@@ -120,16 +114,15 @@ element in a list:
|
|||||||
[ "example.org" "example.com" "example.gov" "example.nl" ];
|
[ "example.org" "example.com" "example.gov" "example.nl" ];
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
(The function <literal>map</literal> is called a <emphasis>higher-order
|
||||||
|
function</emphasis> because it takes another function as an argument.)
|
||||||
|
</para>
|
||||||
|
|
||||||
(The function <literal>map</literal> is called a
|
<para>
|
||||||
<emphasis>higher-order function</emphasis> because it takes another
|
What if you need more than one argument, for instance, if we want to use a
|
||||||
function as an argument.)</para>
|
different <literal>documentRoot</literal> for each virtual host? Then we can
|
||||||
|
make <varname>makeVirtualHost</varname> a function that takes a
|
||||||
<para>What if you need more than one argument, for instance, if we
|
<emphasis>set</emphasis> as its argument, like this:
|
||||||
want to use a different <literal>documentRoot</literal> for each
|
|
||||||
virtual host? Then we can make <varname>makeVirtualHost</varname> a
|
|
||||||
function that takes a <emphasis>set</emphasis> as its argument, like this:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{
|
{
|
||||||
<xref linkend="opt-services.httpd.virtualHosts"/> =
|
<xref linkend="opt-services.httpd.virtualHosts"/> =
|
||||||
@@ -147,10 +140,9 @@ function that takes a <emphasis>set</emphasis> as its argument, like this:
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
But in this case (where every root is a subdirectory of
|
||||||
But in this case (where every root is a subdirectory of
|
<filename>/sites</filename> named after the virtual host), it would have been
|
||||||
<filename>/sites</filename> named after the virtual host), it would
|
shorter to define <varname>makeVirtualHost</varname> as
|
||||||
have been shorter to define <varname>makeVirtualHost</varname> as
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
makeVirtualHost = name:
|
makeVirtualHost = name:
|
||||||
{ hostName = name;
|
{ hostName = name;
|
||||||
@@ -158,9 +150,7 @@ makeVirtualHost = name:
|
|||||||
adminAddr = "alice@example.org";
|
adminAddr = "alice@example.org";
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Here, the construct <literal>${<replaceable>...</replaceable>}</literal>
|
||||||
Here, the construct
|
allows the result of an expression to be spliced into a string.
|
||||||
<literal>${<replaceable>...</replaceable>}</literal> allows the result
|
</para>
|
||||||
of an expression to be spliced into a string.</para>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,22 +3,18 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="ad-hoc-network-config">
|
xml:id="ad-hoc-network-config">
|
||||||
|
<title>Ad-Hoc Configuration</title>
|
||||||
|
|
||||||
<title>Ad-Hoc Configuration</title>
|
<para>
|
||||||
|
You can use <xref linkend="opt-networking.localCommands"/> to specify shell
|
||||||
<para>You can use <xref linkend="opt-networking.localCommands"/> to specify
|
commands to be run at the end of <literal>network-setup.service</literal>.
|
||||||
shell commands to be run at the end of
|
This is useful for doing network configuration not covered by the existing
|
||||||
<literal>network-setup.service</literal>. This is useful for doing
|
NixOS modules. For instance, to statically configure an IPv6 address:
|
||||||
network configuration not covered by the existing NixOS modules. For
|
|
||||||
instance, to statically configure an IPv6 address:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.localCommands"/> =
|
<xref linkend="opt-networking.localCommands"/> =
|
||||||
''
|
''
|
||||||
ip -6 addr add 2001:610:685:1::1/64 dev eth0
|
ip -6 addr add 2001:610:685:1::1/64 dev eth0
|
||||||
'';
|
'';
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,61 +3,59 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-ad-hoc-packages">
|
xml:id="sec-ad-hoc-packages">
|
||||||
|
<title>Ad-Hoc Package Management</title>
|
||||||
|
|
||||||
<title>Ad-Hoc Package Management</title>
|
<para>
|
||||||
|
With the command <command>nix-env</command>, you can install and uninstall
|
||||||
<para>With the command <command>nix-env</command>, you can install and
|
packages from the command line. For instance, to install Mozilla Thunderbird:
|
||||||
uninstall packages from the command line. For instance, to install
|
|
||||||
Mozilla Thunderbird:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-env -iA nixos.thunderbird</screen>
|
$ nix-env -iA nixos.thunderbird</screen>
|
||||||
|
If you invoke this as root, the package is installed in the Nix profile
|
||||||
|
<filename>/nix/var/nix/profiles/default</filename> and visible to all users
|
||||||
|
of the system; otherwise, the package ends up in
|
||||||
|
<filename>/nix/var/nix/profiles/per-user/<replaceable>username</replaceable>/profile</filename>
|
||||||
|
and is not visible to other users. The <option>-A</option> flag specifies the
|
||||||
|
package by its attribute name; without it, the package is installed by
|
||||||
|
matching against its package name (e.g. <literal>thunderbird</literal>). The
|
||||||
|
latter is slower because it requires matching against all available Nix
|
||||||
|
packages, and is ambiguous if there are multiple matching packages.
|
||||||
|
</para>
|
||||||
|
|
||||||
If you invoke this as root, the package is installed in the Nix
|
<para>
|
||||||
profile <filename>/nix/var/nix/profiles/default</filename> and visible
|
Packages come from the NixOS channel. You typically upgrade a package by
|
||||||
to all users of the system; otherwise, the package ends up in
|
updating to the latest version of the NixOS channel:
|
||||||
<filename>/nix/var/nix/profiles/per-user/<replaceable>username</replaceable>/profile</filename>
|
|
||||||
and is not visible to other users. The <option>-A</option> flag
|
|
||||||
specifies the package by its attribute name; without it, the package
|
|
||||||
is installed by matching against its package name
|
|
||||||
(e.g. <literal>thunderbird</literal>). The latter is slower because
|
|
||||||
it requires matching against all available Nix packages, and is
|
|
||||||
ambiguous if there are multiple matching packages.</para>
|
|
||||||
|
|
||||||
<para>Packages come from the NixOS channel. You typically upgrade a
|
|
||||||
package by updating to the latest version of the NixOS channel:
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-channel --update nixos
|
$ nix-channel --update nixos
|
||||||
</screen>
|
</screen>
|
||||||
and then running <literal>nix-env -i</literal> again. Other packages
|
and then running <literal>nix-env -i</literal> again. Other packages in the
|
||||||
in the profile are <emphasis>not</emphasis> affected; this is the
|
profile are <emphasis>not</emphasis> affected; this is the crucial difference
|
||||||
crucial difference with the declarative style of package management,
|
with the declarative style of package management, where running
|
||||||
where running <command>nixos-rebuild switch</command> causes all
|
<command>nixos-rebuild switch</command> causes all packages to be updated to
|
||||||
packages to be updated to their current versions in the NixOS channel.
|
their current versions in the NixOS channel. You can however upgrade all
|
||||||
You can however upgrade all packages for which there is a newer
|
packages for which there is a newer version by doing:
|
||||||
version by doing:
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-env -u '*'
|
$ nix-env -u '*'
|
||||||
</screen>
|
</screen>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>A package can be uninstalled using the <option>-e</option>
|
<para>
|
||||||
flag:
|
A package can be uninstalled using the <option>-e</option> flag:
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-env -e thunderbird
|
$ nix-env -e thunderbird
|
||||||
</screen>
|
</screen>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>Finally, you can roll back an undesirable
|
<para>
|
||||||
<command>nix-env</command> action:
|
Finally, you can roll back an undesirable <command>nix-env</command> action:
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-env --rollback
|
$ nix-env --rollback
|
||||||
</screen>
|
</screen>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para><command>nix-env</command> has many more flags. For details,
|
|
||||||
see the
|
|
||||||
<citerefentry><refentrytitle>nix-env</refentrytitle><manvolnum>1</manvolnum></citerefentry>
|
|
||||||
manpage or the Nix manual.</para>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
<command>nix-env</command> has many more flags. For details, see the
|
||||||
|
<citerefentry>
|
||||||
|
<refentrytitle>nix-env</refentrytitle>
|
||||||
|
<manvolnum>1</manvolnum></citerefentry> manpage or the Nix manual.
|
||||||
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,43 +3,36 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-custom-packages">
|
xml:id="sec-custom-packages">
|
||||||
|
<title>Adding Custom Packages</title>
|
||||||
|
|
||||||
<title>Adding Custom Packages</title>
|
<para>
|
||||||
|
It’s possible that a package you need is not available in NixOS. In that
|
||||||
<para>It’s possible that a package you need is not available in NixOS.
|
case, you can do two things. First, you can clone the Nixpkgs repository, add
|
||||||
In that case, you can do two things. First, you can clone the Nixpkgs
|
the package to your clone, and (optionally) submit a patch or pull request to
|
||||||
repository, add the package to your clone, and (optionally) submit a
|
have it accepted into the main Nixpkgs repository. This is described in
|
||||||
patch or pull request to have it accepted into the main Nixpkgs
|
detail in the <link
|
||||||
repository. This is described in detail in the <link
|
xlink:href="http://nixos.org/nixpkgs/manual">Nixpkgs
|
||||||
xlink:href="http://nixos.org/nixpkgs/manual">Nixpkgs manual</link>.
|
manual</link>. In short, you clone Nixpkgs:
|
||||||
In short, you clone Nixpkgs:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ git clone git://github.com/NixOS/nixpkgs.git
|
$ git clone git://github.com/NixOS/nixpkgs.git
|
||||||
$ cd nixpkgs
|
$ cd nixpkgs
|
||||||
</screen>
|
</screen>
|
||||||
|
Then you write and test the package as described in the Nixpkgs manual.
|
||||||
Then you write and test the package as described in the Nixpkgs
|
Finally, you add it to <literal>environment.systemPackages</literal>, e.g.
|
||||||
manual. Finally, you add it to
|
|
||||||
<literal>environment.systemPackages</literal>, e.g.
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-environment.systemPackages"/> = [ pkgs.my-package ];
|
<xref linkend="opt-environment.systemPackages"/> = [ pkgs.my-package ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
and you run <command>nixos-rebuild</command>, specifying your own Nixpkgs
|
||||||
and you run <command>nixos-rebuild</command>, specifying your own
|
tree:
|
||||||
Nixpkgs tree:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-rebuild switch -I nixpkgs=/path/to/my/nixpkgs</screen>
|
# nixos-rebuild switch -I nixpkgs=/path/to/my/nixpkgs</screen>
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
|
The second possibility is to add the package outside of the Nixpkgs tree. For
|
||||||
<para>The second possibility is to add the package outside of the
|
instance, here is how you specify a build of the
|
||||||
Nixpkgs tree. For instance, here is how you specify a build of the
|
<link xlink:href="http://www.gnu.org/software/hello/">GNU Hello</link>
|
||||||
<link xlink:href="http://www.gnu.org/software/hello/">GNU Hello</link>
|
package directly in <filename>configuration.nix</filename>:
|
||||||
package directly in <filename>configuration.nix</filename>:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-environment.systemPackages"/> =
|
<xref linkend="opt-environment.systemPackages"/> =
|
||||||
let
|
let
|
||||||
@@ -53,13 +46,12 @@ package directly in <filename>configuration.nix</filename>:
|
|||||||
in
|
in
|
||||||
[ my-hello ];
|
[ my-hello ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Of course, you can also move the definition of <literal>my-hello</literal>
|
||||||
Of course, you can also move the definition of
|
into a separate Nix expression, e.g.
|
||||||
<literal>my-hello</literal> into a separate Nix expression, e.g.
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-environment.systemPackages"/> = [ (import ./my-hello.nix) ];
|
<xref linkend="opt-environment.systemPackages"/> = [ (import ./my-hello.nix) ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
where <filename>my-hello.nix</filename> contains:
|
where <filename>my-hello.nix</filename> contains:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
with import <nixpkgs> {}; # bring all of Nixpkgs into scope
|
with import <nixpkgs> {}; # bring all of Nixpkgs into scope
|
||||||
|
|
||||||
@@ -71,14 +63,11 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
This allows testing the package easily:
|
||||||
This allows testing the package easily:
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-build my-hello.nix
|
$ nix-build my-hello.nix
|
||||||
$ ./result/bin/hello
|
$ ./result/bin/hello
|
||||||
Hello, world!
|
Hello, world!
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,28 +3,25 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-configuration-file">
|
xml:id="sec-configuration-file">
|
||||||
|
<title>NixOS Configuration File</title>
|
||||||
|
|
||||||
<title>NixOS Configuration File</title>
|
<para>
|
||||||
|
The NixOS configuration file generally looks like this:
|
||||||
<para>The NixOS configuration file generally looks like this:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{ <replaceable>option definitions</replaceable>
|
{ <replaceable>option definitions</replaceable>
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
The first line (<literal>{ config, pkgs, ... }:</literal>) denotes that this
|
||||||
The first line (<literal>{ config, pkgs, ... }:</literal>) denotes
|
is actually a function that takes at least the two arguments
|
||||||
that this is actually a function that takes at least the two arguments
|
<varname>config</varname> and <varname>pkgs</varname>. (These are explained
|
||||||
<varname>config</varname> and <varname>pkgs</varname>. (These are
|
later.) The function returns a <emphasis>set</emphasis> of option definitions
|
||||||
explained later.) The function returns a <emphasis>set</emphasis> of
|
(<literal>{ <replaceable>...</replaceable> }</literal>). These definitions
|
||||||
option definitions (<literal>{ <replaceable>...</replaceable> }</literal>). These definitions have the
|
have the form <literal><replaceable>name</replaceable> =
|
||||||
form <literal><replaceable>name</replaceable> =
|
<replaceable>value</replaceable></literal>, where
|
||||||
<replaceable>value</replaceable></literal>, where
|
<replaceable>name</replaceable> is the name of an option and
|
||||||
<replaceable>name</replaceable> is the name of an option and
|
<replaceable>value</replaceable> is its value. For example,
|
||||||
<replaceable>value</replaceable> is its value. For example,
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
@@ -33,19 +30,19 @@ form <literal><replaceable>name</replaceable> =
|
|||||||
<xref linkend="opt-services.httpd.documentRoot"/> = "/webroot";
|
<xref linkend="opt-services.httpd.documentRoot"/> = "/webroot";
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
defines a configuration with three option definitions that together enable
|
||||||
|
the Apache HTTP Server with <filename>/webroot</filename> as the document
|
||||||
|
root.
|
||||||
|
</para>
|
||||||
|
|
||||||
defines a configuration with three option definitions that together
|
<para>
|
||||||
enable the Apache HTTP Server with <filename>/webroot</filename> as
|
Sets can be nested, and in fact dots in option names are shorthand for
|
||||||
the document root.</para>
|
defining a set containing another set. For instance,
|
||||||
|
<xref linkend="opt-services.httpd.enable"/> defines a set named
|
||||||
<para>Sets can be nested, and in fact dots in option names are
|
<varname>services</varname> that contains a set named
|
||||||
shorthand for defining a set containing another set. For instance,
|
<varname>httpd</varname>, which in turn contains an option definition named
|
||||||
<xref linkend="opt-services.httpd.enable"/> defines a set named
|
<varname>enable</varname> with value <literal>true</literal>. This means that
|
||||||
<varname>services</varname> that contains a set named
|
the example above can also be written as:
|
||||||
<varname>httpd</varname>, which in turn contains an option definition
|
|
||||||
named <varname>enable</varname> with value <literal>true</literal>.
|
|
||||||
This means that the example above can also be written as:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
@@ -58,46 +55,44 @@ This means that the example above can also be written as:
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
which may be more convenient if you have lots of option definitions that
|
||||||
|
share the same prefix (such as <literal>services.httpd</literal>).
|
||||||
|
</para>
|
||||||
|
|
||||||
which may be more convenient if you have lots of option definitions
|
<para>
|
||||||
that share the same prefix (such as
|
NixOS checks your option definitions for correctness. For instance, if you
|
||||||
<literal>services.httpd</literal>).</para>
|
try to define an option that doesn’t exist (that is, doesn’t have a
|
||||||
|
corresponding <emphasis>option declaration</emphasis>),
|
||||||
<para>NixOS checks your option definitions for correctness. For
|
<command>nixos-rebuild</command> will give an error like:
|
||||||
instance, if you try to define an option that doesn’t exist (that is,
|
|
||||||
doesn’t have a corresponding <emphasis>option declaration</emphasis>),
|
|
||||||
<command>nixos-rebuild</command> will give an error like:
|
|
||||||
<screen>
|
<screen>
|
||||||
The option `services.httpd.enable' defined in `/etc/nixos/configuration.nix' does not exist.
|
The option `services.httpd.enable' defined in `/etc/nixos/configuration.nix' does not exist.
|
||||||
</screen>
|
</screen>
|
||||||
Likewise, values in option definitions must have a correct type. For
|
Likewise, values in option definitions must have a correct type. For
|
||||||
instance, <option>services.httpd.enable</option> must be a Boolean
|
instance, <option>services.httpd.enable</option> must be a Boolean
|
||||||
(<literal>true</literal> or <literal>false</literal>). Trying to give
|
(<literal>true</literal> or <literal>false</literal>). Trying to give it a
|
||||||
it a value of another type, such as a string, will cause an error:
|
value of another type, such as a string, will cause an error:
|
||||||
<screen>
|
<screen>
|
||||||
The option value `services.httpd.enable' in `/etc/nixos/configuration.nix' is not a boolean.
|
The option value `services.httpd.enable' in `/etc/nixos/configuration.nix' is not a boolean.
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
|
Options have various types of values. The most important are:
|
||||||
<para>Options have various types of values. The most important are:
|
<variablelist>
|
||||||
|
|
||||||
<variablelist>
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>Strings</term>
|
<term>Strings</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Strings are enclosed in double quotes, e.g.
|
<para>
|
||||||
|
Strings are enclosed in double quotes, e.g.
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.hostName"/> = "dexter";
|
<xref linkend="opt-networking.hostName"/> = "dexter";
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Special characters can be escaped by prefixing them with a backslash
|
||||||
Special characters can be escaped by prefixing them with a
|
(e.g. <literal>\"</literal>).
|
||||||
backslash (e.g. <literal>\"</literal>).</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>Multi-line strings can be enclosed in <emphasis>double
|
Multi-line strings can be enclosed in <emphasis>double single
|
||||||
single quotes</emphasis>, e.g.
|
quotes</emphasis>, e.g.
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.extraHosts"/> =
|
<xref linkend="opt-networking.extraHosts"/> =
|
||||||
''
|
''
|
||||||
@@ -105,25 +100,22 @@ The option value `services.httpd.enable' in `/etc/nixos/configuration.nix' is no
|
|||||||
10.0.0.1 server
|
10.0.0.1 server
|
||||||
'';
|
'';
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
The main difference is that it strips from each line a number of spaces
|
||||||
The main difference is that it strips from each line
|
equal to the minimal indentation of the string as a whole (disregarding
|
||||||
a number of spaces equal to the minimal indentation of
|
the indentation of empty lines), and that characters like
|
||||||
the string as a whole (disregarding the indentation of
|
<literal>"</literal> and <literal>\</literal> are not special (making it
|
||||||
empty lines), and that characters like
|
more convenient for including things like shell code). See more info
|
||||||
<literal>"</literal> and <literal>\</literal> are not special
|
about this in the Nix manual
|
||||||
(making it more convenient for including things like shell
|
<link
|
||||||
code).
|
xlink:href="https://nixos.org/nix/manual/#ssec-values">here</link>.
|
||||||
See more info about this in the Nix manual <link
|
</para>
|
||||||
xlink:href="https://nixos.org/nix/manual/#ssec-values">here</link>.</para>
|
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>Booleans</term>
|
<term>Booleans</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>These can be <literal>true</literal> or
|
<para>
|
||||||
<literal>false</literal>, e.g.
|
These can be <literal>true</literal> or <literal>false</literal>, e.g.
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.firewall.enable"/> = true;
|
<xref linkend="opt-networking.firewall.enable"/> = true;
|
||||||
<xref linkend="opt-networking.firewall.allowPing"/> = false;
|
<xref linkend="opt-networking.firewall.allowPing"/> = false;
|
||||||
@@ -131,32 +123,29 @@ The option value `services.httpd.enable' in `/etc/nixos/configuration.nix' is no
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>Integers</term>
|
<term>Integers</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>For example,
|
<para>
|
||||||
|
For example,
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-boot.kernel.sysctl"/>."net.ipv4.tcp_keepalive_time" = 60;
|
<xref linkend="opt-boot.kernel.sysctl"/>."net.ipv4.tcp_keepalive_time" = 60;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
(Note that here the attribute name
|
(Note that here the attribute name
|
||||||
<literal>net.ipv4.tcp_keepalive_time</literal> is enclosed in
|
<literal>net.ipv4.tcp_keepalive_time</literal> is enclosed in quotes to
|
||||||
quotes to prevent it from being interpreted as a set named
|
prevent it from being interpreted as a set named <literal>net</literal>
|
||||||
<literal>net</literal> containing a set named
|
containing a set named <literal>ipv4</literal>, and so on. This is
|
||||||
<literal>ipv4</literal>, and so on. This is because it’s not a
|
because it’s not a NixOS option but the literal name of a Linux kernel
|
||||||
NixOS option but the literal name of a Linux kernel
|
setting.)
|
||||||
setting.)</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>Sets</term>
|
<term>Sets</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Sets were introduced above. They are name/value pairs
|
<para>
|
||||||
enclosed in braces, as in the option definition
|
Sets were introduced above. They are name/value pairs enclosed in braces,
|
||||||
|
as in the option definition
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-fileSystems"/>."/boot" =
|
<xref linkend="opt-fileSystems"/>."/boot" =
|
||||||
{ device = "/dev/sda1";
|
{ device = "/dev/sda1";
|
||||||
@@ -167,33 +156,29 @@ The option value `services.httpd.enable' in `/etc/nixos/configuration.nix' is no
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>Lists</term>
|
<term>Lists</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>The important thing to note about lists is that list
|
<para>
|
||||||
elements are separated by whitespace, like this:
|
The important thing to note about lists is that list elements are
|
||||||
|
separated by whitespace, like this:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-boot.kernelModules"/> = [ "fuse" "kvm-intel" "coretemp" ];
|
<xref linkend="opt-boot.kernelModules"/> = [ "fuse" "kvm-intel" "coretemp" ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
List elements can be any other type, e.g. sets:
|
List elements can be any other type, e.g. sets:
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
swapDevices = [ { device = "/dev/disk/by-label/swap"; } ];
|
swapDevices = [ { device = "/dev/disk/by-label/swap"; } ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>Packages</term>
|
<term>Packages</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Usually, the packages you need are already part of the Nix
|
<para>
|
||||||
Packages collection, which is a set that can be accessed through
|
Usually, the packages you need are already part of the Nix Packages
|
||||||
the function argument <varname>pkgs</varname>. Typical uses:
|
collection, which is a set that can be accessed through the function
|
||||||
|
argument <varname>pkgs</varname>. Typical uses:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-environment.systemPackages"/> =
|
<xref linkend="opt-environment.systemPackages"/> =
|
||||||
[ pkgs.thunderbird
|
[ pkgs.thunderbird
|
||||||
@@ -202,16 +187,12 @@ swapDevices = [ { device = "/dev/disk/by-label/swap"; } ];
|
|||||||
|
|
||||||
<xref linkend="opt-services.postgresql.package"/> = pkgs.postgresql90;
|
<xref linkend="opt-services.postgresql.package"/> = pkgs.postgresql90;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
The latter option definition changes the default PostgreSQL package used
|
||||||
The latter option definition changes the default PostgreSQL
|
by NixOS’s PostgreSQL service to 9.0. For more information on packages,
|
||||||
package used by NixOS’s PostgreSQL service to 9.0. For more
|
including how to add new ones, see <xref linkend="sec-custom-packages"/>.
|
||||||
information on packages, including how to add new ones, see
|
</para>
|
||||||
<xref linkend="sec-custom-packages"/>.</para>
|
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
</variablelist>
|
||||||
</variablelist>
|
</para>
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,25 +3,23 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-configuration-syntax">
|
xml:id="sec-configuration-syntax">
|
||||||
|
<title>Configuration Syntax</title>
|
||||||
<title>Configuration Syntax</title>
|
<para>
|
||||||
|
The NixOS configuration file
|
||||||
<para>The NixOS configuration file
|
<filename>/etc/nixos/configuration.nix</filename> is actually a <emphasis>Nix
|
||||||
<filename>/etc/nixos/configuration.nix</filename> is actually a
|
expression</emphasis>, which is the Nix package manager’s purely functional
|
||||||
<emphasis>Nix expression</emphasis>, which is the Nix package
|
language for describing how to build packages and configurations. This means
|
||||||
manager’s purely functional language for describing how to build
|
you have all the expressive power of that language at your disposal,
|
||||||
packages and configurations. This means you have all the expressive
|
including the ability to abstract over common patterns, which is very useful
|
||||||
power of that language at your disposal, including the ability to
|
when managing complex systems. The syntax and semantics of the Nix language
|
||||||
abstract over common patterns, which is very useful when managing
|
are fully described in the
|
||||||
complex systems. The syntax and semantics of the Nix language are
|
<link
|
||||||
fully described in the <link
|
|
||||||
xlink:href="http://nixos.org/nix/manual/#chap-writing-nix-expressions">Nix
|
xlink:href="http://nixos.org/nix/manual/#chap-writing-nix-expressions">Nix
|
||||||
manual</link>, but here we give a short overview of the most important
|
manual</link>, but here we give a short overview of the most important
|
||||||
constructs useful in NixOS configuration files.</para>
|
constructs useful in NixOS configuration files.
|
||||||
|
</para>
|
||||||
<xi:include href="config-file.xml" />
|
<xi:include href="config-file.xml" />
|
||||||
<xi:include href="abstractions.xml" />
|
<xi:include href="abstractions.xml" />
|
||||||
<xi:include href="modularity.xml" />
|
<xi:include href="modularity.xml" />
|
||||||
<xi:include href="summary.xml" />
|
<xi:include href="summary.xml" />
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,30 +3,24 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="ch-configuration">
|
xml:id="ch-configuration">
|
||||||
|
<title>Configuration</title>
|
||||||
<title>Configuration</title>
|
<partintro>
|
||||||
|
<para>
|
||||||
<partintro>
|
This chapter describes how to configure various aspects of a NixOS machine
|
||||||
|
through the configuration file
|
||||||
<para>This chapter describes how to configure various aspects of a
|
<filename>/etc/nixos/configuration.nix</filename>. As described in
|
||||||
NixOS machine through the configuration file
|
<xref linkend="sec-changing-config" />, changes to this file only take
|
||||||
<filename>/etc/nixos/configuration.nix</filename>. As described in
|
effect after you run <command>nixos-rebuild</command>.
|
||||||
<xref linkend="sec-changing-config" />, changes to this file only take
|
</para>
|
||||||
effect after you run <command>nixos-rebuild</command>.</para>
|
</partintro>
|
||||||
|
<xi:include href="config-syntax.xml" />
|
||||||
</partintro>
|
<xi:include href="package-mgmt.xml" />
|
||||||
|
<xi:include href="user-mgmt.xml" />
|
||||||
<xi:include href="config-syntax.xml" />
|
<xi:include href="file-systems.xml" />
|
||||||
<xi:include href="package-mgmt.xml" />
|
<xi:include href="x-windows.xml" />
|
||||||
<xi:include href="user-mgmt.xml" />
|
<xi:include href="xfce.xml" />
|
||||||
<xi:include href="file-systems.xml" />
|
<xi:include href="networking.xml" />
|
||||||
<xi:include href="x-windows.xml" />
|
<xi:include href="linux-kernel.xml" />
|
||||||
<xi:include href="xfce.xml" />
|
<xi:include href="../generated/modules.xml" xpointer="xpointer(//section[@id='modules']/*)" />
|
||||||
<xi:include href="networking.xml" />
|
|
||||||
<xi:include href="linux-kernel.xml" />
|
|
||||||
|
|
||||||
<xi:include href="../generated/modules.xml" xpointer="xpointer(//section[@id='modules']/*)" />
|
|
||||||
|
|
||||||
<!-- Apache; libvirtd virtualisation -->
|
<!-- Apache; libvirtd virtualisation -->
|
||||||
|
|
||||||
</part>
|
</part>
|
||||||
|
|||||||
@@ -3,53 +3,50 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-customising-packages">
|
xml:id="sec-customising-packages">
|
||||||
|
<title>Customising Packages</title>
|
||||||
|
|
||||||
<title>Customising Packages</title>
|
<para>
|
||||||
|
Some packages in Nixpkgs have options to enable or disable optional
|
||||||
|
functionality or change other aspects of the package. For instance, the
|
||||||
|
Firefox wrapper package (which provides Firefox with a set of plugins such as
|
||||||
|
the Adobe Flash player) has an option to enable the Google Talk plugin. It
|
||||||
|
can be set in <filename>configuration.nix</filename> as follows: <filename>
|
||||||
|
nixpkgs.config.firefox.enableGoogleTalkPlugin = true; </filename>
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>Some packages in Nixpkgs have options to enable or disable
|
<warning>
|
||||||
optional functionality or change other aspects of the package. For
|
<para>
|
||||||
instance, the Firefox wrapper package (which provides Firefox with a
|
Unfortunately, Nixpkgs currently lacks a way to query available
|
||||||
set of plugins such as the Adobe Flash player) has an option to enable
|
configuration options.
|
||||||
the Google Talk plugin. It can be set in
|
</para>
|
||||||
<filename>configuration.nix</filename> as follows:
|
</warning>
|
||||||
|
|
||||||
<filename>
|
|
||||||
nixpkgs.config.firefox.enableGoogleTalkPlugin = true;
|
|
||||||
</filename>
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<warning><para>Unfortunately, Nixpkgs currently lacks a way to query
|
|
||||||
available configuration options.</para></warning>
|
|
||||||
|
|
||||||
<para>Apart from high-level options, it’s possible to tweak a package
|
|
||||||
in almost arbitrary ways, such as changing or disabling dependencies
|
|
||||||
of a package. For instance, the Emacs package in Nixpkgs by default
|
|
||||||
has a dependency on GTK+ 2. If you want to build it against GTK+ 3,
|
|
||||||
you can specify that as follows:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Apart from high-level options, it’s possible to tweak a package in almost
|
||||||
|
arbitrary ways, such as changing or disabling dependencies of a package. For
|
||||||
|
instance, the Emacs package in Nixpkgs by default has a dependency on GTK+ 2.
|
||||||
|
If you want to build it against GTK+ 3, you can specify that as follows:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-environment.systemPackages"/> = [ (pkgs.emacs.override { gtk = pkgs.gtk3; }) ];
|
<xref linkend="opt-environment.systemPackages"/> = [ (pkgs.emacs.override { gtk = pkgs.gtk3; }) ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
The function <varname>override</varname> performs the call to the Nix
|
||||||
|
function that produces Emacs, with the original arguments amended by the set
|
||||||
|
of arguments specified by you. So here the function argument
|
||||||
|
<varname>gtk</varname> gets the value <literal>pkgs.gtk3</literal>, causing
|
||||||
|
Emacs to depend on GTK+ 3. (The parentheses are necessary because in Nix,
|
||||||
|
function application binds more weakly than list construction, so without
|
||||||
|
them, <xref linkend="opt-environment.systemPackages"/> would be a list with
|
||||||
|
two elements.)
|
||||||
|
</para>
|
||||||
|
|
||||||
The function <varname>override</varname> performs the call to the Nix
|
<para>
|
||||||
function that produces Emacs, with the original arguments amended by
|
Even greater customisation is possible using the function
|
||||||
the set of arguments specified by you. So here the function argument
|
<varname>overrideAttrs</varname>. While the <varname>override</varname>
|
||||||
<varname>gtk</varname> gets the value <literal>pkgs.gtk3</literal>,
|
mechanism above overrides the arguments of a package function,
|
||||||
causing Emacs to depend on GTK+ 3. (The parentheses are necessary
|
<varname>overrideAttrs</varname> allows changing the
|
||||||
because in Nix, function application binds more weakly than list
|
<emphasis>attributes</emphasis> passed to <literal>mkDerivation</literal>.
|
||||||
construction, so without them,
|
This permits changing any aspect of the package, such as the source code. For
|
||||||
<xref linkend="opt-environment.systemPackages"/> would be a list with two
|
instance, if you want to override the source code of Emacs, you can say:
|
||||||
elements.)</para>
|
|
||||||
|
|
||||||
<para>Even greater customisation is possible using the function
|
|
||||||
<varname>overrideAttrs</varname>. While the
|
|
||||||
<varname>override</varname> mechanism above overrides the arguments of
|
|
||||||
a package function, <varname>overrideAttrs</varname> allows
|
|
||||||
changing the <emphasis>attributes</emphasis> passed to <literal>mkDerivation</literal>.
|
|
||||||
This permits changing any aspect of the package, such as the source code.
|
|
||||||
For instance, if you want to override the source code of Emacs, you
|
|
||||||
can say:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-environment.systemPackages"/> = [
|
<xref linkend="opt-environment.systemPackages"/> = [
|
||||||
(pkgs.emacs.overrideAttrs (oldAttrs: {
|
(pkgs.emacs.overrideAttrs (oldAttrs: {
|
||||||
@@ -58,36 +55,32 @@ can say:
|
|||||||
}))
|
}))
|
||||||
];
|
];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Here, <varname>overrideAttrs</varname> takes the Nix derivation specified by
|
||||||
|
<varname>pkgs.emacs</varname> and produces a new derivation in which the
|
||||||
|
original’s <literal>name</literal> and <literal>src</literal> attribute
|
||||||
|
have been replaced by the given values by re-calling
|
||||||
|
<literal>stdenv.mkDerivation</literal>. The original attributes are
|
||||||
|
accessible via the function argument, which is conventionally named
|
||||||
|
<varname>oldAttrs</varname>.
|
||||||
|
</para>
|
||||||
|
|
||||||
Here, <varname>overrideAttrs</varname> takes the Nix derivation
|
<para>
|
||||||
specified by <varname>pkgs.emacs</varname> and produces a new
|
The overrides shown above are not global. They do not affect the original
|
||||||
derivation in which the original’s <literal>name</literal> and
|
package; other packages in Nixpkgs continue to depend on the original rather
|
||||||
<literal>src</literal> attribute have been replaced by the given
|
than the customised package. This means that if another package in your
|
||||||
values by re-calling <literal>stdenv.mkDerivation</literal>.
|
system depends on the original package, you end up with two instances of the
|
||||||
The original attributes are accessible via the function argument,
|
package. If you want to have everything depend on your customised instance,
|
||||||
which is conventionally named <varname>oldAttrs</varname>.</para>
|
you can apply a <emphasis>global</emphasis> override as follows:
|
||||||
|
|
||||||
<para>The overrides shown above are not global. They do not affect
|
|
||||||
the original package; other packages in Nixpkgs continue to depend on
|
|
||||||
the original rather than the customised package. This means that if
|
|
||||||
another package in your system depends on the original package, you
|
|
||||||
end up with two instances of the package. If you want to have
|
|
||||||
everything depend on your customised instance, you can apply a
|
|
||||||
<emphasis>global</emphasis> override as follows:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
nixpkgs.config.packageOverrides = pkgs:
|
nixpkgs.config.packageOverrides = pkgs:
|
||||||
{ emacs = pkgs.emacs.override { gtk = pkgs.gtk3; };
|
{ emacs = pkgs.emacs.override { gtk = pkgs.gtk3; };
|
||||||
};
|
};
|
||||||
</screen>
|
</screen>
|
||||||
|
The effect of this definition is essentially equivalent to modifying the
|
||||||
The effect of this definition is essentially equivalent to modifying
|
<literal>emacs</literal> attribute in the Nixpkgs source tree. Any package in
|
||||||
the <literal>emacs</literal> attribute in the Nixpkgs source tree.
|
Nixpkgs that depends on <literal>emacs</literal> will be passed your
|
||||||
Any package in Nixpkgs that depends on <literal>emacs</literal> will
|
customised instance. (However, the value <literal>pkgs.emacs</literal> in
|
||||||
be passed your customised instance. (However, the value
|
<varname>nixpkgs.config.packageOverrides</varname> refers to the original
|
||||||
<literal>pkgs.emacs</literal> in
|
rather than overridden instance, to prevent an infinite recursion.)
|
||||||
<varname>nixpkgs.config.packageOverrides</varname> refers to the
|
</para>
|
||||||
original rather than overridden instance, to prevent an infinite
|
|
||||||
recursion.)</para>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,41 +3,41 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-declarative-package-mgmt">
|
xml:id="sec-declarative-package-mgmt">
|
||||||
|
<title>Declarative Package Management</title>
|
||||||
|
|
||||||
<title>Declarative Package Management</title>
|
<para>
|
||||||
|
With declarative package management, you specify which packages you want on
|
||||||
<para>With declarative package management, you specify which packages
|
your system by setting the option
|
||||||
you want on your system by setting the option
|
<xref linkend="opt-environment.systemPackages"/>. For instance, adding the
|
||||||
<xref linkend="opt-environment.systemPackages"/>. For instance, adding the
|
following line to <filename>configuration.nix</filename> enables the Mozilla
|
||||||
following line to <filename>configuration.nix</filename> enables the
|
Thunderbird email application:
|
||||||
Mozilla Thunderbird email application:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-environment.systemPackages"/> = [ pkgs.thunderbird ];
|
<xref linkend="opt-environment.systemPackages"/> = [ pkgs.thunderbird ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
The effect of this specification is that the Thunderbird package from Nixpkgs
|
||||||
|
will be built or downloaded as part of the system when you run
|
||||||
|
<command>nixos-rebuild switch</command>.
|
||||||
|
</para>
|
||||||
|
|
||||||
The effect of this specification is that the Thunderbird package from
|
<para>
|
||||||
Nixpkgs will be built or downloaded as part of the system when you run
|
You can get a list of the available packages as follows:
|
||||||
<command>nixos-rebuild switch</command>.</para>
|
|
||||||
|
|
||||||
<para>You can get a list of the available packages as follows:
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-env -qaP '*' --description
|
$ nix-env -qaP '*' --description
|
||||||
nixos.firefox firefox-23.0 Mozilla Firefox - the browser, reloaded
|
nixos.firefox firefox-23.0 Mozilla Firefox - the browser, reloaded
|
||||||
<replaceable>...</replaceable>
|
<replaceable>...</replaceable>
|
||||||
</screen>
|
</screen>
|
||||||
|
The first column in the output is the <emphasis>attribute name</emphasis>,
|
||||||
|
such as <literal>nixos.thunderbird</literal>. (The <literal>nixos</literal>
|
||||||
|
prefix allows distinguishing between different channels that you might have.)
|
||||||
|
</para>
|
||||||
|
|
||||||
The first column in the output is the <emphasis>attribute
|
<para>
|
||||||
name</emphasis>, such as
|
To “uninstall” a package, simply remove it from
|
||||||
<literal>nixos.thunderbird</literal>. (The
|
<xref linkend="opt-environment.systemPackages"/> and run
|
||||||
<literal>nixos</literal> prefix allows distinguishing between
|
<command>nixos-rebuild switch</command>.
|
||||||
different channels that you might have.)</para>
|
</para>
|
||||||
|
|
||||||
<para>To “uninstall” a package, simply remove it from
|
<xi:include href="customizing-packages.xml" />
|
||||||
<xref linkend="opt-environment.systemPackages"/> and run
|
|
||||||
<command>nixos-rebuild switch</command>.</para>
|
|
||||||
|
|
||||||
<xi:include href="customizing-packages.xml" />
|
|
||||||
<xi:include href="adding-custom-packages.xml" />
|
|
||||||
|
|
||||||
|
<xi:include href="adding-custom-packages.xml" />
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,44 +3,44 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="ch-file-systems">
|
xml:id="ch-file-systems">
|
||||||
|
<title>File Systems</title>
|
||||||
<title>File Systems</title>
|
<para>
|
||||||
|
You can define file systems using the <option>fileSystems</option>
|
||||||
<para>You can define file systems using the
|
configuration option. For instance, the following definition causes NixOS to
|
||||||
<option>fileSystems</option> configuration option. For instance, the
|
mount the Ext4 file system on device
|
||||||
following definition causes NixOS to mount the Ext4 file system on
|
<filename>/dev/disk/by-label/data</filename> onto the mount point
|
||||||
device <filename>/dev/disk/by-label/data</filename> onto the mount
|
<filename>/data</filename>:
|
||||||
point <filename>/data</filename>:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-fileSystems"/>."/data" =
|
<xref linkend="opt-fileSystems"/>."/data" =
|
||||||
{ device = "/dev/disk/by-label/data";
|
{ device = "/dev/disk/by-label/data";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Mount points are created automatically if they don’t already exist. For
|
||||||
Mount points are created automatically if they don’t already exist.
|
<option><link linkend="opt-fileSystems._name__.device">device</link></option>,
|
||||||
For <option><link linkend="opt-fileSystems._name__.device">device</link></option>, it’s best to use the topology-independent
|
it’s best to use the topology-independent device aliases in
|
||||||
device aliases in <filename>/dev/disk/by-label</filename> and
|
<filename>/dev/disk/by-label</filename> and
|
||||||
<filename>/dev/disk/by-uuid</filename>, as these don’t change if the
|
<filename>/dev/disk/by-uuid</filename>, as these don’t change if the
|
||||||
topology changes (e.g. if a disk is moved to another IDE
|
topology changes (e.g. if a disk is moved to another IDE controller).
|
||||||
controller).</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>You can usually omit the file system type
|
You can usually omit the file system type
|
||||||
(<option><link linkend="opt-fileSystems._name__.fsType">fsType</link></option>), since <command>mount</command> can usually
|
(<option><link linkend="opt-fileSystems._name__.fsType">fsType</link></option>),
|
||||||
detect the type and load the necessary kernel module automatically.
|
since <command>mount</command> can usually detect the type and load the
|
||||||
However, if the file system is needed at early boot (in the initial
|
necessary kernel module automatically. However, if the file system is needed
|
||||||
ramdisk) and is not <literal>ext2</literal>, <literal>ext3</literal>
|
at early boot (in the initial ramdisk) and is not <literal>ext2</literal>,
|
||||||
or <literal>ext4</literal>, then it’s best to specify
|
<literal>ext3</literal> or <literal>ext4</literal>, then it’s best to
|
||||||
<option>fsType</option> to ensure that the kernel module is
|
specify <option>fsType</option> to ensure that the kernel module is
|
||||||
available.</para>
|
available.
|
||||||
|
</para>
|
||||||
<note><para>System startup will fail if any of the filesystems fails to mount,
|
<note>
|
||||||
dropping you to the emergency shell.
|
<para>
|
||||||
You can make a mount asynchronous and non-critical by adding
|
System startup will fail if any of the filesystems fails to mount, dropping
|
||||||
<literal><link linkend="opt-fileSystems._name__.options">options</link> = [ "nofail" ];</literal>.
|
you to the emergency shell. You can make a mount asynchronous and
|
||||||
</para></note>
|
non-critical by adding
|
||||||
|
<literal><link linkend="opt-fileSystems._name__.options">options</link> = [
|
||||||
<xi:include href="luks-file-systems.xml" />
|
"nofail" ];</literal>.
|
||||||
|
</para>
|
||||||
|
</note>
|
||||||
|
<xi:include href="luks-file-systems.xml" />
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,49 +3,44 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-firewall">
|
xml:id="sec-firewall">
|
||||||
|
<title>Firewall</title>
|
||||||
|
|
||||||
<title>Firewall</title>
|
<para>
|
||||||
|
NixOS has a simple stateful firewall that blocks incoming connections and
|
||||||
<para>NixOS has a simple stateful firewall that blocks incoming
|
other unexpected packets. The firewall applies to both IPv4 and IPv6 traffic.
|
||||||
connections and other unexpected packets. The firewall applies to
|
It is enabled by default. It can be disabled as follows:
|
||||||
both IPv4 and IPv6 traffic. It is enabled by default. It can be
|
|
||||||
disabled as follows:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.firewall.enable"/> = false;
|
<xref linkend="opt-networking.firewall.enable"/> = false;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
If the firewall is enabled, you can open specific TCP ports to the outside
|
||||||
If the firewall is enabled, you can open specific TCP ports to the
|
world:
|
||||||
outside world:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.firewall.allowedTCPPorts"/> = [ 80 443 ];
|
<xref linkend="opt-networking.firewall.allowedTCPPorts"/> = [ 80 443 ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Note that TCP port 22 (ssh) is opened automatically if the SSH daemon is
|
||||||
|
enabled (<option><xref linkend="opt-services.openssh.enable"/> =
|
||||||
|
true</option>). UDP ports can be opened through
|
||||||
|
<xref linkend="opt-networking.firewall.allowedUDPPorts"/>.
|
||||||
|
</para>
|
||||||
|
|
||||||
Note that TCP port 22 (ssh) is opened automatically if the SSH daemon
|
<para>
|
||||||
is enabled (<option><xref linkend="opt-services.openssh.enable"/> = true</option>). UDP
|
To open ranges of TCP ports:
|
||||||
ports can be opened through
|
|
||||||
<xref linkend="opt-networking.firewall.allowedUDPPorts"/>.</para>
|
|
||||||
|
|
||||||
<para>To open ranges of TCP ports:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.firewall.allowedTCPPortRanges"/> = [
|
<xref linkend="opt-networking.firewall.allowedTCPPortRanges"/> = [
|
||||||
{ from = 4000; to = 4007; }
|
{ from = 4000; to = 4007; }
|
||||||
{ from = 8000; to = 8010; }
|
{ from = 8000; to = 8010; }
|
||||||
];
|
];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Similarly, UDP port ranges can be opened through
|
||||||
|
<xref linkend="opt-networking.firewall.allowedUDPPortRanges"/>.
|
||||||
|
</para>
|
||||||
|
|
||||||
Similarly, UDP port ranges can be opened through
|
<para>
|
||||||
<xref linkend="opt-networking.firewall.allowedUDPPortRanges"/>.</para>
|
Also of interest is
|
||||||
|
|
||||||
<para>Also of interest is
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.firewall.allowPing"/> = true;
|
<xref linkend="opt-networking.firewall.allowPing"/> = true;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
to allow the machine to respond to ping requests. (ICMPv6 pings are always
|
||||||
to allow the machine to respond to ping requests. (ICMPv6 pings are
|
allowed.)
|
||||||
always allowed.)</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,45 +3,41 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-ipv4">
|
xml:id="sec-ipv4">
|
||||||
|
<title>IPv4 Configuration</title>
|
||||||
|
|
||||||
<title>IPv4 Configuration</title>
|
<para>
|
||||||
|
By default, NixOS uses DHCP (specifically, <command>dhcpcd</command>) to
|
||||||
<para>By default, NixOS uses DHCP (specifically,
|
automatically configure network interfaces. However, you can configure an
|
||||||
<command>dhcpcd</command>) to automatically configure network
|
interface manually as follows:
|
||||||
interfaces. However, you can configure an interface manually as
|
|
||||||
follows:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<link linkend="opt-networking.interfaces._name__.ipv4.addresses">networking.interfaces.eth0.ipv4.addresses</link> = [ {
|
<link linkend="opt-networking.interfaces._name__.ipv4.addresses">networking.interfaces.eth0.ipv4.addresses</link> = [ {
|
||||||
address = "192.168.1.2";
|
address = "192.168.1.2";
|
||||||
prefixLength = 24;
|
prefixLength = 24;
|
||||||
} ];
|
} ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Typically you’ll also want to set a default gateway and set of name
|
||||||
Typically you’ll also want to set a default gateway and set of name
|
servers:
|
||||||
servers:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.defaultGateway"/> = "192.168.1.1";
|
<xref linkend="opt-networking.defaultGateway"/> = "192.168.1.1";
|
||||||
<xref linkend="opt-networking.nameservers"/> = [ "8.8.8.8" ];
|
<xref linkend="opt-networking.nameservers"/> = [ "8.8.8.8" ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<note>
|
||||||
|
<para>
|
||||||
<note><para>Statically configured interfaces are set up by the systemd
|
Statically configured interfaces are set up by the systemd service
|
||||||
service
|
<replaceable>interface-name</replaceable><literal>-cfg.service</literal>.
|
||||||
<replaceable>interface-name</replaceable><literal>-cfg.service</literal>.
|
The default gateway and name server configuration is performed by
|
||||||
The default gateway and name server configuration is performed by
|
<literal>network-setup.service</literal>.
|
||||||
<literal>network-setup.service</literal>.</para></note>
|
</para>
|
||||||
|
</note>
|
||||||
<para>The host name is set using <xref linkend="opt-networking.hostName"/>:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The host name is set using <xref linkend="opt-networking.hostName"/>:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.hostName"/> = "cartman";
|
<xref linkend="opt-networking.hostName"/> = "cartman";
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
The default host name is <literal>nixos</literal>. Set it to the empty string
|
||||||
The default host name is <literal>nixos</literal>. Set it to the
|
(<literal>""</literal>) to allow the DHCP server to provide the host name.
|
||||||
empty string (<literal>""</literal>) to allow the DHCP server to
|
</para>
|
||||||
provide the host name.</para>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,47 +3,48 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-ipv6">
|
xml:id="sec-ipv6">
|
||||||
|
<title>IPv6 Configuration</title>
|
||||||
|
|
||||||
<title>IPv6 Configuration</title>
|
<para>
|
||||||
|
IPv6 is enabled by default. Stateless address autoconfiguration is used to
|
||||||
<para>IPv6 is enabled by default. Stateless address autoconfiguration
|
automatically assign IPv6 addresses to all interfaces. You can disable IPv6
|
||||||
is used to automatically assign IPv6 addresses to all interfaces. You
|
support globally by setting:
|
||||||
can disable IPv6 support globally by setting:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.enableIPv6"/> = false;
|
<xref linkend="opt-networking.enableIPv6"/> = false;
|
||||||
</programlisting></para>
|
</programlisting>
|
||||||
|
</para>
|
||||||
<para>You can disable IPv6 on a single interface using a normal sysctl (in this
|
|
||||||
example, we use interface <varname>eth0</varname>):
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
You can disable IPv6 on a single interface using a normal sysctl (in this
|
||||||
|
example, we use interface <varname>eth0</varname>):
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-boot.kernel.sysctl"/>."net.ipv6.conf.eth0.disable_ipv6" = true;
|
<xref linkend="opt-boot.kernel.sysctl"/>."net.ipv6.conf.eth0.disable_ipv6" = true;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>As with IPv4 networking interfaces are automatically configured via
|
|
||||||
DHCPv6. You can configure an interface manually:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
As with IPv4 networking interfaces are automatically configured via DHCPv6.
|
||||||
|
You can configure an interface manually:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<link linkend="opt-networking.interfaces._name__.ipv6.addresses">networking.interfaces.eth0.ipv6.addresses</link> = [ {
|
<link linkend="opt-networking.interfaces._name__.ipv6.addresses">networking.interfaces.eth0.ipv6.addresses</link> = [ {
|
||||||
address = "fe00:aa:bb:cc::2";
|
address = "fe00:aa:bb:cc::2";
|
||||||
prefixLength = 64;
|
prefixLength = 64;
|
||||||
} ];
|
} ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>For configuring a gateway, optionally with explicitly specified interface:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
For configuring a gateway, optionally with explicitly specified interface:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.defaultGateway6"/> = {
|
<xref linkend="opt-networking.defaultGateway6"/> = {
|
||||||
address = "fe00::1";
|
address = "fe00::1";
|
||||||
interface = "enp0s3";
|
interface = "enp0s3";
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>See <xref linkend='sec-ipv4' /> for similar examples and additional information.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
See <xref linkend='sec-ipv4' /> for similar examples and additional
|
||||||
|
information.
|
||||||
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,29 +3,29 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-kernel-config">
|
xml:id="sec-kernel-config">
|
||||||
|
<title>Linux Kernel</title>
|
||||||
<title>Linux Kernel</title>
|
<para>
|
||||||
|
You can override the Linux kernel and associated packages using the option
|
||||||
<para>You can override the Linux kernel and associated packages using
|
<option>boot.kernelPackages</option>. For instance, this selects the Linux
|
||||||
the option <option>boot.kernelPackages</option>. For instance, this
|
3.10 kernel:
|
||||||
selects the Linux 3.10 kernel:
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-boot.kernelPackages"/> = pkgs.linuxPackages_3_10;
|
<xref linkend="opt-boot.kernelPackages"/> = pkgs.linuxPackages_3_10;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
Note that this not only replaces the kernel, but also packages that
|
Note that this not only replaces the kernel, but also packages that are
|
||||||
are specific to the kernel version, such as the NVIDIA video drivers.
|
specific to the kernel version, such as the NVIDIA video drivers. This
|
||||||
This ensures that driver packages are consistent with the
|
ensures that driver packages are consistent with the kernel.
|
||||||
kernel.</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>The default Linux kernel configuration should be fine for most users. You can see the configuration of your current kernel with the following command:
|
The default Linux kernel configuration should be fine for most users. You can
|
||||||
|
see the configuration of your current kernel with the following command:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
zcat /proc/config.gz
|
zcat /proc/config.gz
|
||||||
</programlisting>
|
</programlisting>
|
||||||
If you want to change the kernel configuration, you can use the
|
If you want to change the kernel configuration, you can use the
|
||||||
<option>packageOverrides</option> feature (see <xref
|
<option>packageOverrides</option> feature (see
|
||||||
linkend="sec-customising-packages" />). For instance, to enable
|
<xref
|
||||||
support for the kernel debugger KGDB:
|
linkend="sec-customising-packages" />). For instance, to enable support
|
||||||
|
for the kernel debugger KGDB:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
nixpkgs.config.packageOverrides = pkgs:
|
nixpkgs.config.packageOverrides = pkgs:
|
||||||
{ linux_3_4 = pkgs.linux_3_4.override {
|
{ linux_3_4 = pkgs.linux_3_4.override {
|
||||||
@@ -36,47 +36,46 @@ nixpkgs.config.packageOverrides = pkgs:
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
<varname>extraConfig</varname> takes a list of Linux kernel configuration
|
||||||
<varname>extraConfig</varname> takes a list of Linux kernel
|
options, one per line. The name of the option should not include the prefix
|
||||||
configuration options, one per line. The name of the option should
|
<literal>CONFIG_</literal>. The option value is typically
|
||||||
not include the prefix <literal>CONFIG_</literal>. The option value
|
<literal>y</literal>, <literal>n</literal> or <literal>m</literal> (to build
|
||||||
is typically <literal>y</literal>, <literal>n</literal> or
|
something as a kernel module).
|
||||||
<literal>m</literal> (to build something as a kernel module).</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>Kernel modules for hardware devices are generally loaded
|
Kernel modules for hardware devices are generally loaded automatically by
|
||||||
automatically by <command>udev</command>. You can force a module to
|
<command>udev</command>. You can force a module to be loaded via
|
||||||
be loaded via <xref linkend="opt-boot.kernelModules"/>, e.g.
|
<xref linkend="opt-boot.kernelModules"/>, e.g.
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-boot.kernelModules"/> = [ "fuse" "kvm-intel" "coretemp" ];
|
<xref linkend="opt-boot.kernelModules"/> = [ "fuse" "kvm-intel" "coretemp" ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
If the module is required early during the boot (e.g. to mount the
|
If the module is required early during the boot (e.g. to mount the root file
|
||||||
root file system), you can use
|
system), you can use <xref linkend="opt-boot.initrd.extraKernelModules"/>:
|
||||||
<xref linkend="opt-boot.initrd.extraKernelModules"/>:
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-boot.initrd.extraKernelModules"/> = [ "cifs" ];
|
<xref linkend="opt-boot.initrd.extraKernelModules"/> = [ "cifs" ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
This causes the specified modules and their dependencies to be added
|
This causes the specified modules and their dependencies to be added to the
|
||||||
to the initial ramdisk.</para>
|
initial ramdisk.
|
||||||
|
</para>
|
||||||
<para>Kernel runtime parameters can be set through
|
<para>
|
||||||
<xref linkend="opt-boot.kernel.sysctl"/>, e.g.
|
Kernel runtime parameters can be set through
|
||||||
|
<xref linkend="opt-boot.kernel.sysctl"/>, e.g.
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-boot.kernel.sysctl"/>."net.ipv4.tcp_keepalive_time" = 120;
|
<xref linkend="opt-boot.kernel.sysctl"/>."net.ipv4.tcp_keepalive_time" = 120;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
sets the kernel’s TCP keepalive time to 120 seconds. To see the
|
sets the kernel’s TCP keepalive time to 120 seconds. To see the available
|
||||||
available parameters, run <command>sysctl -a</command>.</para>
|
parameters, run <command>sysctl -a</command>.
|
||||||
|
</para>
|
||||||
<section>
|
<section>
|
||||||
<title>Developing kernel modules</title>
|
<title>Developing kernel modules</title>
|
||||||
|
|
||||||
<para>When developing kernel modules it's often convenient to run
|
<para>
|
||||||
edit-compile-run loop as quickly as possible.
|
When developing kernel modules it's often convenient to run edit-compile-run
|
||||||
|
loop as quickly as possible. See below snippet as an example of developing
|
||||||
See below snippet as an example of developing <literal>mellanox</literal>
|
<literal>mellanox</literal> drivers.
|
||||||
drivers.
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen><![CDATA[
|
<screen><![CDATA[
|
||||||
$ nix-build '<nixpkgs>' -A linuxPackages.kernel.dev
|
$ nix-build '<nixpkgs>' -A linuxPackages.kernel.dev
|
||||||
$ nix-shell '<nixpkgs>' -A linuxPackages.kernel
|
$ nix-shell '<nixpkgs>' -A linuxPackages.kernel
|
||||||
$ unpackPhase
|
$ unpackPhase
|
||||||
@@ -84,7 +83,5 @@ $ cd linux-*
|
|||||||
$ make -C $dev/lib/modules/*/build M=$(pwd)/drivers/net/ethernet/mellanox modules
|
$ make -C $dev/lib/modules/*/build M=$(pwd)/drivers/net/ethernet/mellanox modules
|
||||||
# insmod ./drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.ko
|
# insmod ./drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.ko
|
||||||
]]></screen>
|
]]></screen>
|
||||||
|
</section>
|
||||||
</section>
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,14 +3,13 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-luks-file-systems">
|
xml:id="sec-luks-file-systems">
|
||||||
|
<title>LUKS-Encrypted File Systems</title>
|
||||||
|
|
||||||
<title>LUKS-Encrypted File Systems</title>
|
<para>
|
||||||
|
NixOS supports file systems that are encrypted using
|
||||||
<para>NixOS supports file systems that are encrypted using
|
<emphasis>LUKS</emphasis> (Linux Unified Key Setup). For example, here is how
|
||||||
<emphasis>LUKS</emphasis> (Linux Unified Key Setup). For example,
|
you create an encrypted Ext4 file system on the device
|
||||||
here is how you create an encrypted Ext4 file system on the device
|
<filename>/dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d</filename>:
|
||||||
<filename>/dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d</filename>:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# cryptsetup luksFormat /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d
|
# cryptsetup luksFormat /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d
|
||||||
|
|
||||||
@@ -27,20 +26,15 @@ Enter passphrase for /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d: ***
|
|||||||
|
|
||||||
# mkfs.ext4 /dev/mapper/crypted
|
# mkfs.ext4 /dev/mapper/crypted
|
||||||
</screen>
|
</screen>
|
||||||
|
To ensure that this file system is automatically mounted at boot time as
|
||||||
To ensure that this file system is automatically mounted at boot time
|
<filename>/</filename>, add the following to
|
||||||
as <filename>/</filename>, add the following to
|
<filename>configuration.nix</filename>:
|
||||||
<filename>configuration.nix</filename>:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<link linkend="opt-boot.initrd.luks.devices._name__.device">boot.initrd.luks.devices.crypted.device</link> = "/dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d";
|
<link linkend="opt-boot.initrd.luks.devices._name__.device">boot.initrd.luks.devices.crypted.device</link> = "/dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d";
|
||||||
<xref linkend="opt-fileSystems"/>."/".device = "/dev/mapper/crypted";
|
<xref linkend="opt-fileSystems"/>."/".device = "/dev/mapper/crypted";
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Should grub be used as bootloader, and <filename>/boot</filename> is located
|
||||||
Should grub be used as bootloader, and <filename>/boot</filename> is located
|
on an encrypted partition, it is necessary to add the following grub option:
|
||||||
on an encrypted partition, it is necessary to add the following grub option:
|
|
||||||
<programlisting><xref linkend="opt-boot.loader.grub.enableCryptodisk"/> = true;</programlisting>
|
<programlisting><xref linkend="opt-boot.loader.grub.enableCryptodisk"/> = true;</programlisting>
|
||||||
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,21 +3,21 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-modularity">
|
xml:id="sec-modularity">
|
||||||
|
<title>Modularity</title>
|
||||||
|
|
||||||
<title>Modularity</title>
|
<para>
|
||||||
|
The NixOS configuration mechanism is modular. If your
|
||||||
<para>The NixOS configuration mechanism is modular. If your
|
<filename>configuration.nix</filename> becomes too big, you can split it into
|
||||||
<filename>configuration.nix</filename> becomes too big, you can split
|
multiple files. Likewise, if you have multiple NixOS configurations (e.g. for
|
||||||
it into multiple files. Likewise, if you have multiple NixOS
|
different computers) with some commonality, you can move the common
|
||||||
configurations (e.g. for different computers) with some commonality,
|
configuration into a shared file.
|
||||||
you can move the common configuration into a shared file.</para>
|
</para>
|
||||||
|
|
||||||
<para>Modules have exactly the same syntax as
|
|
||||||
<filename>configuration.nix</filename>. In fact,
|
|
||||||
<filename>configuration.nix</filename> is itself a module. You can
|
|
||||||
use other modules by including them from
|
|
||||||
<filename>configuration.nix</filename>, e.g.:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Modules have exactly the same syntax as
|
||||||
|
<filename>configuration.nix</filename>. In fact,
|
||||||
|
<filename>configuration.nix</filename> is itself a module. You can use other
|
||||||
|
modules by including them from <filename>configuration.nix</filename>, e.g.:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
@@ -27,11 +27,9 @@ use other modules by including them from
|
|||||||
<replaceable>...</replaceable>
|
<replaceable>...</replaceable>
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Here, we include two modules from the same directory,
|
||||||
Here, we include two modules from the same directory,
|
<filename>vpn.nix</filename> and <filename>kde.nix</filename>. The latter
|
||||||
<filename>vpn.nix</filename> and <filename>kde.nix</filename>. The
|
might look like this:
|
||||||
latter might look like this:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
@@ -40,59 +38,55 @@ latter might look like this:
|
|||||||
<xref linkend="opt-services.xserver.desktopManager.plasma5.enable"/> = true;
|
<xref linkend="opt-services.xserver.desktopManager.plasma5.enable"/> = true;
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Note that both <filename>configuration.nix</filename> and
|
||||||
Note that both <filename>configuration.nix</filename> and
|
<filename>kde.nix</filename> define the option
|
||||||
<filename>kde.nix</filename> define the option
|
<xref linkend="opt-environment.systemPackages"/>. When multiple modules
|
||||||
<xref linkend="opt-environment.systemPackages"/>. When multiple modules
|
define an option, NixOS will try to <emphasis>merge</emphasis> the
|
||||||
define an option, NixOS will try to <emphasis>merge</emphasis> the
|
definitions. In the case of <xref linkend="opt-environment.systemPackages"/>,
|
||||||
definitions. In the case of
|
that’s easy: the lists of packages can simply be concatenated. The value in
|
||||||
<xref linkend="opt-environment.systemPackages"/>, that’s easy: the lists of
|
<filename>configuration.nix</filename> is merged last, so for list-type
|
||||||
packages can simply be concatenated. The value in
|
options, it will appear at the end of the merged list. If you want it to
|
||||||
<filename>configuration.nix</filename> is merged last, so for
|
appear first, you can use <varname>mkBefore</varname>:
|
||||||
list-type options, it will appear at the end of the merged list. If
|
|
||||||
you want it to appear first, you can use <varname>mkBefore</varname>:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-boot.kernelModules"/> = mkBefore [ "kvm-intel" ];
|
<xref linkend="opt-boot.kernelModules"/> = mkBefore [ "kvm-intel" ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
This causes the <literal>kvm-intel</literal> kernel module to be loaded
|
||||||
|
before any other kernel modules.
|
||||||
|
</para>
|
||||||
|
|
||||||
This causes the <literal>kvm-intel</literal> kernel module to be
|
<para>
|
||||||
loaded before any other kernel modules.</para>
|
For other types of options, a merge may not be possible. For instance, if two
|
||||||
|
modules define <xref linkend="opt-services.httpd.adminAddr"/>,
|
||||||
<para>For other types of options, a merge may not be possible. For
|
<command>nixos-rebuild</command> will give an error:
|
||||||
instance, if two modules define
|
|
||||||
<xref linkend="opt-services.httpd.adminAddr"/>,
|
|
||||||
<command>nixos-rebuild</command> will give an error:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
The unique option `services.httpd.adminAddr' is defined multiple times, in `/etc/nixos/httpd.nix' and `/etc/nixos/configuration.nix'.
|
The unique option `services.httpd.adminAddr' is defined multiple times, in `/etc/nixos/httpd.nix' and `/etc/nixos/configuration.nix'.
|
||||||
</screen>
|
</screen>
|
||||||
|
When that happens, it’s possible to force one definition take precedence
|
||||||
When that happens, it’s possible to force one definition take
|
over the others:
|
||||||
precedence over the others:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-services.httpd.adminAddr"/> = pkgs.lib.mkForce "bob@example.org";
|
<xref linkend="opt-services.httpd.adminAddr"/> = pkgs.lib.mkForce "bob@example.org";
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
|
When using multiple modules, you may need to access configuration values
|
||||||
<para>When using multiple modules, you may need to access
|
defined in other modules. This is what the <varname>config</varname> function
|
||||||
configuration values defined in other modules. This is what the
|
argument is for: it contains the complete, merged system configuration. That
|
||||||
<varname>config</varname> function argument is for: it contains the
|
is, <varname>config</varname> is the result of combining the configurations
|
||||||
complete, merged system configuration. That is,
|
returned by every module
|
||||||
<varname>config</varname> is the result of combining the
|
<footnote>
|
||||||
configurations returned by every module<footnote><para>If you’re
|
<para>
|
||||||
wondering how it’s possible that the (indirect)
|
If you’re wondering how it’s possible that the (indirect)
|
||||||
<emphasis>result</emphasis> of a function is passed as an
|
<emphasis>result</emphasis> of a function is passed as an
|
||||||
<emphasis>input</emphasis> to that same function: that’s because Nix
|
<emphasis>input</emphasis> to that same function: that’s because Nix is a
|
||||||
is a “lazy” language — it only computes values when they are needed.
|
“lazy” language — it only computes values when they are needed. This
|
||||||
This works as long as no individual configuration value depends on
|
works as long as no individual configuration value depends on itself.
|
||||||
itself.</para></footnote>. For example, here is a module that adds
|
</para>
|
||||||
some packages to <xref linkend="opt-environment.systemPackages"/> only if
|
</footnote>
|
||||||
<xref linkend="opt-services.xserver.enable"/> is set to
|
. For example, here is a module that adds some packages to
|
||||||
<literal>true</literal> somewhere else:
|
<xref linkend="opt-environment.systemPackages"/> only if
|
||||||
|
<xref linkend="opt-services.xserver.enable"/> is set to
|
||||||
|
<literal>true</literal> somewhere else:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
@@ -105,13 +99,12 @@ some packages to <xref linkend="opt-environment.systemPackages"/> only if
|
|||||||
[ ];
|
[ ];
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
|
With multiple modules, it may not be obvious what the final value of a
|
||||||
<para>With multiple modules, it may not be obvious what the final
|
configuration option is. The command <option>nixos-option</option> allows you
|
||||||
value of a configuration option is. The command
|
to find out:
|
||||||
<option>nixos-option</option> allows you to find out:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nixos-option <xref linkend="opt-services.xserver.enable"/>
|
$ nixos-option <xref linkend="opt-services.xserver.enable"/>
|
||||||
true
|
true
|
||||||
@@ -119,14 +112,11 @@ true
|
|||||||
$ nixos-option <xref linkend="opt-boot.kernelModules"/>
|
$ nixos-option <xref linkend="opt-boot.kernelModules"/>
|
||||||
[ "tun" "ipv6" "loop" <replaceable>...</replaceable> ]
|
[ "tun" "ipv6" "loop" <replaceable>...</replaceable> ]
|
||||||
</screen>
|
</screen>
|
||||||
|
Interactive exploration of the configuration is possible using
|
||||||
Interactive exploration of the configuration is possible using
|
<command
|
||||||
<command
|
|
||||||
xlink:href="https://github.com/edolstra/nix-repl">nix-repl</command>,
|
xlink:href="https://github.com/edolstra/nix-repl">nix-repl</command>,
|
||||||
a read-eval-print loop for Nix expressions. It’s not installed by
|
a read-eval-print loop for Nix expressions. It’s not installed by default;
|
||||||
default; run <literal>nix-env -i nix-repl</literal> to get it. A
|
run <literal>nix-env -i nix-repl</literal> to get it. A typical use:
|
||||||
typical use:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-repl '<nixpkgs/nixos>'
|
$ nix-repl '<nixpkgs/nixos>'
|
||||||
|
|
||||||
@@ -136,7 +126,5 @@ nix-repl> config.<xref linkend="opt-networking.hostName"/>
|
|||||||
nix-repl> map (x: x.hostName) config.<xref linkend="opt-services.httpd.virtualHosts"/>
|
nix-repl> map (x: x.hostName) config.<xref linkend="opt-services.httpd.virtualHosts"/>
|
||||||
[ "example.org" "example.gov" ]
|
[ "example.org" "example.gov" ]
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,39 +3,42 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-networkmanager">
|
xml:id="sec-networkmanager">
|
||||||
|
<title>NetworkManager</title>
|
||||||
|
|
||||||
<title>NetworkManager</title>
|
<para>
|
||||||
|
To facilitate network configuration, some desktop environments use
|
||||||
<para>To facilitate network configuration, some desktop environments
|
NetworkManager. You can enable NetworkManager by setting:
|
||||||
use NetworkManager. You can enable NetworkManager by setting:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.networkmanager.enable"/> = true;
|
<xref linkend="opt-networking.networkmanager.enable"/> = true;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
some desktop managers (e.g., GNOME) enable NetworkManager automatically for
|
||||||
|
you.
|
||||||
|
</para>
|
||||||
|
|
||||||
some desktop managers (e.g., GNOME) enable NetworkManager
|
<para>
|
||||||
automatically for you.</para>
|
All users that should have permission to change network settings must belong
|
||||||
|
to the <code>networkmanager</code> group:
|
||||||
<para>All users that should have permission to change network settings must
|
|
||||||
belong to the <code>networkmanager</code> group:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<link linkend="opt-users.users._name__.extraGroups">users.extraUsers.youruser.extraGroups</link> = [ "networkmanager" ];
|
<link linkend="opt-users.users._name__.extraGroups">users.extraUsers.youruser.extraGroups</link> = [ "networkmanager" ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>NetworkManager is controlled using either <command>nmcli</command> or
|
<para>
|
||||||
<command>nmtui</command> (curses-based terminal user interface). See their
|
NetworkManager is controlled using either <command>nmcli</command> or
|
||||||
manual pages for details on their usage. Some desktop environments (GNOME, KDE)
|
<command>nmtui</command> (curses-based terminal user interface). See their
|
||||||
have their own configuration tools for NetworkManager. On XFCE, there is no
|
manual pages for details on their usage. Some desktop environments (GNOME,
|
||||||
configuration tool for NetworkManager by default: by adding
|
KDE) have their own configuration tools for NetworkManager. On XFCE, there is
|
||||||
<code>networkmanagerapplet</code> to the list of system packages, the graphical
|
no configuration tool for NetworkManager by default: by adding
|
||||||
applet will be installed and will launch automatically when XFCE is starting
|
<code>networkmanagerapplet</code> to the list of system packages, the
|
||||||
(and will show in the status tray).</para>
|
graphical applet will be installed and will launch automatically when XFCE is
|
||||||
|
starting (and will show in the status tray).
|
||||||
<note><para><code>networking.networkmanager</code> and
|
</para>
|
||||||
<code>networking.wireless</code> (WPA Supplicant) cannot be enabled at the same
|
|
||||||
time: you can still connect to the wireless networks using
|
|
||||||
NetworkManager.</para></note>
|
|
||||||
|
|
||||||
|
<note>
|
||||||
|
<para>
|
||||||
|
<code>networking.networkmanager</code> and <code>networking.wireless</code>
|
||||||
|
(WPA Supplicant) cannot be enabled at the same time: you can still connect
|
||||||
|
to the wireless networks using NetworkManager.
|
||||||
|
</para>
|
||||||
|
</note>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,20 +3,17 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-networking">
|
xml:id="sec-networking">
|
||||||
|
<title>Networking</title>
|
||||||
<title>Networking</title>
|
<para>
|
||||||
|
This section describes how to configure networking components on your NixOS
|
||||||
<para>This section describes how to configure networking components on
|
machine.
|
||||||
your NixOS machine.</para>
|
</para>
|
||||||
|
<xi:include href="network-manager.xml" />
|
||||||
<xi:include href="network-manager.xml" />
|
<xi:include href="ssh.xml" />
|
||||||
<xi:include href="ssh.xml" />
|
<xi:include href="ipv4-config.xml" />
|
||||||
<xi:include href="ipv4-config.xml" />
|
<xi:include href="ipv6-config.xml" />
|
||||||
<xi:include href="ipv6-config.xml" />
|
<xi:include href="firewall.xml" />
|
||||||
<xi:include href="firewall.xml" />
|
<xi:include href="wireless.xml" />
|
||||||
<xi:include href="wireless.xml" />
|
<xi:include href="ad-hoc-network-config.xml" />
|
||||||
<xi:include href="ad-hoc-network-config.xml" />
|
|
||||||
|
|
||||||
<!-- TODO: OpenVPN, NAT -->
|
<!-- TODO: OpenVPN, NAT -->
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,32 +3,29 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-package-management">
|
xml:id="sec-package-management">
|
||||||
|
<title>Package Management</title>
|
||||||
<title>Package Management</title>
|
<para>
|
||||||
|
This section describes how to add additional packages to your system. NixOS
|
||||||
<para>This section describes how to add additional packages to your
|
has two distinct styles of package management:
|
||||||
system. NixOS has two distinct styles of package management:
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
<itemizedlist>
|
<para>
|
||||||
|
<emphasis>Declarative</emphasis>, where you declare what packages you want
|
||||||
<listitem><para><emphasis>Declarative</emphasis>, where you declare
|
in your <filename>configuration.nix</filename>. Every time you run
|
||||||
what packages you want in your
|
|
||||||
<filename>configuration.nix</filename>. Every time you run
|
|
||||||
<command>nixos-rebuild</command>, NixOS will ensure that you get a
|
<command>nixos-rebuild</command>, NixOS will ensure that you get a
|
||||||
consistent set of binaries corresponding to your
|
consistent set of binaries corresponding to your specification.
|
||||||
specification.</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem><para><emphasis>Ad hoc</emphasis>, where you install,
|
<listitem>
|
||||||
upgrade and uninstall packages via the <command>nix-env</command>
|
<para>
|
||||||
command. This style allows mixing packages from different Nixpkgs
|
<emphasis>Ad hoc</emphasis>, where you install, upgrade and uninstall
|
||||||
versions. It’s the only choice for non-root
|
packages via the <command>nix-env</command> command. This style allows
|
||||||
users.</para></listitem>
|
mixing packages from different Nixpkgs versions. It’s the only choice
|
||||||
|
for non-root users.
|
||||||
</itemizedlist>
|
</para>
|
||||||
|
</listitem>
|
||||||
</para>
|
</itemizedlist>
|
||||||
|
</para>
|
||||||
<xi:include href="declarative-packages.xml" />
|
<xi:include href="declarative-packages.xml" />
|
||||||
<xi:include href="ad-hoc-packages.xml" />
|
<xi:include href="ad-hoc-packages.xml" />
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,30 +3,25 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-ssh">
|
xml:id="sec-ssh">
|
||||||
|
<title>Secure Shell Access</title>
|
||||||
|
|
||||||
<title>Secure Shell Access</title>
|
<para>
|
||||||
|
Secure shell (SSH) access to your machine can be enabled by setting:
|
||||||
<para>Secure shell (SSH) access to your machine can be enabled by
|
|
||||||
setting:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-services.openssh.enable"/> = true;
|
<xref linkend="opt-services.openssh.enable"/> = true;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
By default, root logins using a password are disallowed. They can be disabled
|
||||||
|
entirely by setting <xref linkend="opt-services.openssh.permitRootLogin"/> to
|
||||||
|
<literal>"no"</literal>.
|
||||||
|
</para>
|
||||||
|
|
||||||
By default, root logins using a password are disallowed. They can be
|
<para>
|
||||||
disabled entirely by setting
|
You can declaratively specify authorised RSA/DSA public keys for a user as
|
||||||
<xref linkend="opt-services.openssh.permitRootLogin"/> to
|
follows:
|
||||||
<literal>"no"</literal>.</para>
|
|
||||||
|
|
||||||
<para>You can declaratively specify authorised RSA/DSA public keys for
|
|
||||||
a user as follows:
|
|
||||||
|
|
||||||
<!-- FIXME: this might not work if the user is unmanaged. -->
|
<!-- FIXME: this might not work if the user is unmanaged. -->
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<link linkend="opt-users.users._name__.openssh.authorizedKeys.keys">users.extraUsers.alice.openssh.authorizedKeys.keys</link> =
|
<link linkend="opt-users.users._name__.openssh.authorizedKeys.keys">users.extraUsers.alice.openssh.authorizedKeys.keys</link> =
|
||||||
[ "ssh-dss AAAAB3NzaC1kc3MAAACBAPIkGWVEt4..." ];
|
[ "ssh-dss AAAAB3NzaC1kc3MAAACBAPIkGWVEt4..." ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,16 +3,18 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-nix-syntax-summary">
|
xml:id="sec-nix-syntax-summary">
|
||||||
|
<title>Syntax Summary</title>
|
||||||
|
|
||||||
<title>Syntax Summary</title>
|
<para>
|
||||||
|
Below is a summary of the most important syntactic constructs in the Nix
|
||||||
<para>Below is a summary of the most important syntactic constructs in
|
expression language. It’s not complete. In particular, there are many other
|
||||||
the Nix expression language. It’s not complete. In particular, there
|
built-in functions. See the
|
||||||
are many other built-in functions. See the <link
|
<link
|
||||||
xlink:href="http://nixos.org/nix/manual/#chap-writing-nix-expressions">Nix
|
xlink:href="http://nixos.org/nix/manual/#chap-writing-nix-expressions">Nix
|
||||||
manual</link> for the rest.</para>
|
manual</link> for the rest.
|
||||||
|
</para>
|
||||||
|
|
||||||
<informaltable frame='none'>
|
<informaltable frame='none'>
|
||||||
<tgroup cols='2'>
|
<tgroup cols='2'>
|
||||||
<colspec colname='c1' rowsep='1' colsep='1' />
|
<colspec colname='c1' rowsep='1' colsep='1' />
|
||||||
<colspec colname='c2' rowsep='1' />
|
<colspec colname='c2' rowsep='1' />
|
||||||
@@ -23,170 +25,203 @@ manual</link> for the rest.</para>
|
|||||||
</row>
|
</row>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
<entry namest="c1" nameend="c2"><emphasis>Basic values</emphasis></entry>
|
<entry namest="c1" nameend="c2"><emphasis>Basic values</emphasis>
|
||||||
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>"Hello world"</literal></entry>
|
<entry><literal>"Hello world"</literal>
|
||||||
|
</entry>
|
||||||
<entry>A string</entry>
|
<entry>A string</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>"${pkgs.bash}/bin/sh"</literal></entry>
|
<entry><literal>"${pkgs.bash}/bin/sh"</literal>
|
||||||
|
</entry>
|
||||||
<entry>A string containing an expression (expands to <literal>"/nix/store/<replaceable>hash</replaceable>-bash-<replaceable>version</replaceable>/bin/sh"</literal>)</entry>
|
<entry>A string containing an expression (expands to <literal>"/nix/store/<replaceable>hash</replaceable>-bash-<replaceable>version</replaceable>/bin/sh"</literal>)</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>true</literal>, <literal>false</literal></entry>
|
<entry><literal>true</literal>, <literal>false</literal>
|
||||||
|
</entry>
|
||||||
<entry>Booleans</entry>
|
<entry>Booleans</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>123</literal></entry>
|
<entry><literal>123</literal>
|
||||||
|
</entry>
|
||||||
<entry>An integer</entry>
|
<entry>An integer</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>./foo.png</literal></entry>
|
<entry><literal>./foo.png</literal>
|
||||||
|
</entry>
|
||||||
<entry>A path (relative to the containing Nix expression)</entry>
|
<entry>A path (relative to the containing Nix expression)</entry>
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
<entry namest="c1" nameend="c2"><emphasis>Compound values</emphasis></entry>
|
<entry namest="c1" nameend="c2"><emphasis>Compound values</emphasis>
|
||||||
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>{ x = 1; y = 2; }</literal></entry>
|
<entry><literal>{ x = 1; y = 2; }</literal>
|
||||||
<entry>A set with attributes named <literal>x</literal> and <literal>y</literal></entry>
|
</entry>
|
||||||
|
<entry>A set with attributes named <literal>x</literal> and <literal>y</literal>
|
||||||
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>{ foo.bar = 1; }</literal></entry>
|
<entry><literal>{ foo.bar = 1; }</literal>
|
||||||
<entry>A nested set, equivalent to <literal>{ foo = { bar = 1; }; }</literal></entry>
|
</entry>
|
||||||
|
<entry>A nested set, equivalent to <literal>{ foo = { bar = 1; }; }</literal>
|
||||||
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>rec { x = "foo"; y = x + "bar"; }</literal></entry>
|
<entry><literal>rec { x = "foo"; y = x + "bar"; }</literal>
|
||||||
<entry>A recursive set, equivalent to <literal>{ x = "foo"; y = "foobar"; }</literal></entry>
|
</entry>
|
||||||
|
<entry>A recursive set, equivalent to <literal>{ x = "foo"; y = "foobar"; }</literal>
|
||||||
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>[ "foo" "bar" ]</literal></entry>
|
<entry><literal>[ "foo" "bar" ]</literal>
|
||||||
|
</entry>
|
||||||
<entry>A list with two elements</entry>
|
<entry>A list with two elements</entry>
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
<entry namest="c1" nameend="c2"><emphasis>Operators</emphasis></entry>
|
<entry namest="c1" nameend="c2"><emphasis>Operators</emphasis>
|
||||||
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>"foo" + "bar"</literal></entry>
|
<entry><literal>"foo" + "bar"</literal>
|
||||||
|
</entry>
|
||||||
<entry>String concatenation</entry>
|
<entry>String concatenation</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>1 + 2</literal></entry>
|
<entry><literal>1 + 2</literal>
|
||||||
|
</entry>
|
||||||
<entry>Integer addition</entry>
|
<entry>Integer addition</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>"foo" == "f" + "oo"</literal></entry>
|
<entry><literal>"foo" == "f" + "oo"</literal>
|
||||||
|
</entry>
|
||||||
<entry>Equality test (evaluates to <literal>true</literal>)</entry>
|
<entry>Equality test (evaluates to <literal>true</literal>)</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>"foo" != "bar"</literal></entry>
|
<entry><literal>"foo" != "bar"</literal>
|
||||||
|
</entry>
|
||||||
<entry>Inequality test (evaluates to <literal>true</literal>)</entry>
|
<entry>Inequality test (evaluates to <literal>true</literal>)</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>!true</literal></entry>
|
<entry><literal>!true</literal>
|
||||||
|
</entry>
|
||||||
<entry>Boolean negation</entry>
|
<entry>Boolean negation</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>{ x = 1; y = 2; }.x</literal></entry>
|
<entry><literal>{ x = 1; y = 2; }.x</literal>
|
||||||
|
</entry>
|
||||||
<entry>Attribute selection (evaluates to <literal>1</literal>)</entry>
|
<entry>Attribute selection (evaluates to <literal>1</literal>)</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>{ x = 1; y = 2; }.z or 3</literal></entry>
|
<entry><literal>{ x = 1; y = 2; }.z or 3</literal>
|
||||||
|
</entry>
|
||||||
<entry>Attribute selection with default (evaluates to <literal>3</literal>)</entry>
|
<entry>Attribute selection with default (evaluates to <literal>3</literal>)</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>{ x = 1; y = 2; } // { z = 3; }</literal></entry>
|
<entry><literal>{ x = 1; y = 2; } // { z = 3; }</literal>
|
||||||
|
</entry>
|
||||||
<entry>Merge two sets (attributes in the right-hand set taking precedence)</entry>
|
<entry>Merge two sets (attributes in the right-hand set taking precedence)</entry>
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
<entry namest="c1" nameend="c2"><emphasis>Control structures</emphasis></entry>
|
<entry namest="c1" nameend="c2"><emphasis>Control structures</emphasis>
|
||||||
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>if 1 + 1 == 2 then "yes!" else "no!"</literal></entry>
|
<entry><literal>if 1 + 1 == 2 then "yes!" else "no!"</literal>
|
||||||
|
</entry>
|
||||||
<entry>Conditional expression</entry>
|
<entry>Conditional expression</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>assert 1 + 1 == 2; "yes!"</literal></entry>
|
<entry><literal>assert 1 + 1 == 2; "yes!"</literal>
|
||||||
|
</entry>
|
||||||
<entry>Assertion check (evaluates to <literal>"yes!"</literal>). See <xref
|
<entry>Assertion check (evaluates to <literal>"yes!"</literal>). See <xref
|
||||||
linkend="sec-assertions"/> for using assertions in modules</entry>
|
linkend="sec-assertions"/> for using assertions in modules</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>let x = "foo"; y = "bar"; in x + y</literal></entry>
|
<entry><literal>let x = "foo"; y = "bar"; in x + y</literal>
|
||||||
|
</entry>
|
||||||
<entry>Variable definition</entry>
|
<entry>Variable definition</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>with pkgs.lib; head [ 1 2 3 ]</literal></entry>
|
<entry><literal>with pkgs.lib; head [ 1 2 3 ]</literal>
|
||||||
|
</entry>
|
||||||
<entry>Add all attributes from the given set to the scope
|
<entry>Add all attributes from the given set to the scope
|
||||||
(evaluates to <literal>1</literal>)</entry>
|
(evaluates to <literal>1</literal>)</entry>
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
<entry namest="c1" nameend="c2"><emphasis>Functions (lambdas)</emphasis></entry>
|
<entry namest="c1" nameend="c2"><emphasis>Functions (lambdas)</emphasis>
|
||||||
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>x: x + 1</literal></entry>
|
<entry><literal>x: x + 1</literal>
|
||||||
|
</entry>
|
||||||
<entry>A function that expects an integer and returns it increased by 1</entry>
|
<entry>A function that expects an integer and returns it increased by 1</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>(x: x + 1) 100</literal></entry>
|
<entry><literal>(x: x + 1) 100</literal>
|
||||||
|
</entry>
|
||||||
<entry>A function call (evaluates to 101)</entry>
|
<entry>A function call (evaluates to 101)</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>let inc = x: x + 1; in inc (inc (inc 100))</literal></entry>
|
<entry><literal>let inc = x: x + 1; in inc (inc (inc 100))</literal>
|
||||||
|
</entry>
|
||||||
<entry>A function bound to a variable and subsequently called by name (evaluates to 103)</entry>
|
<entry>A function bound to a variable and subsequently called by name (evaluates to 103)</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>{ x, y }: x + y</literal></entry>
|
<entry><literal>{ x, y }: x + y</literal>
|
||||||
|
</entry>
|
||||||
<entry>A function that expects a set with required attributes
|
<entry>A function that expects a set with required attributes
|
||||||
<literal>x</literal> and <literal>y</literal> and concatenates
|
<literal>x</literal> and <literal>y</literal> and concatenates
|
||||||
them</entry>
|
them</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>{ x, y ? "bar" }: x + y</literal></entry>
|
<entry><literal>{ x, y ? "bar" }: x + y</literal>
|
||||||
|
</entry>
|
||||||
<entry>A function that expects a set with required attribute
|
<entry>A function that expects a set with required attribute
|
||||||
<literal>x</literal> and optional <literal>y</literal>, using
|
<literal>x</literal> and optional <literal>y</literal>, using
|
||||||
<literal>"bar"</literal> as default value for
|
<literal>"bar"</literal> as default value for
|
||||||
<literal>y</literal></entry>
|
<literal>y</literal>
|
||||||
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>{ x, y, ... }: x + y</literal></entry>
|
<entry><literal>{ x, y, ... }: x + y</literal>
|
||||||
|
</entry>
|
||||||
<entry>A function that expects a set with required attributes
|
<entry>A function that expects a set with required attributes
|
||||||
<literal>x</literal> and <literal>y</literal> and ignores any
|
<literal>x</literal> and <literal>y</literal> and ignores any
|
||||||
other attributes</entry>
|
other attributes</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>{ x, y } @ args: x + y</literal></entry>
|
<entry><literal>{ x, y } @ args: x + y</literal>
|
||||||
|
</entry>
|
||||||
<entry>A function that expects a set with required attributes
|
<entry>A function that expects a set with required attributes
|
||||||
<literal>x</literal> and <literal>y</literal>, and binds the
|
<literal>x</literal> and <literal>y</literal>, and binds the
|
||||||
whole set to <literal>args</literal></entry>
|
whole set to <literal>args</literal>
|
||||||
</row>
|
</entry>
|
||||||
|
|
||||||
<row>
|
|
||||||
<entry namest="c1" nameend="c2"><emphasis>Built-in functions</emphasis></entry>
|
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>import ./foo.nix</literal></entry>
|
<entry namest="c1" nameend="c2"><emphasis>Built-in functions</emphasis>
|
||||||
|
</entry>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<entry><literal>import ./foo.nix</literal>
|
||||||
|
</entry>
|
||||||
<entry>Load and return Nix expression in given file</entry>
|
<entry>Load and return Nix expression in given file</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>map (x: x + x) [ 1 2 3 ]</literal></entry>
|
<entry><literal>map (x: x + x) [ 1 2 3 ]</literal>
|
||||||
|
</entry>
|
||||||
<entry>Apply a function to every element of a list (evaluates to <literal>[ 2 4 6 ]</literal>)</entry>
|
<entry>Apply a function to every element of a list (evaluates to <literal>[ 2 4 6 ]</literal>)</entry>
|
||||||
</row>
|
</row>
|
||||||
<!--
|
<!--
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>throw "Urgh"</literal></entry>
|
<entry><literal>throw "Urgh"</literal></entry>
|
||||||
<entry>Raise an error condition</entry>
|
<entry>Raise an error condition</entry>
|
||||||
</row>
|
</row>
|
||||||
-->
|
-->
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</tgroup>
|
</tgroup>
|
||||||
</informaltable>
|
</informaltable>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,14 +3,12 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-user-management">
|
xml:id="sec-user-management">
|
||||||
|
<title>User Management</title>
|
||||||
<title>User Management</title>
|
<para>
|
||||||
|
NixOS supports both declarative and imperative styles of user management. In
|
||||||
<para>NixOS supports both declarative and imperative styles of user
|
the declarative style, users are specified in
|
||||||
management. In the declarative style, users are specified in
|
<filename>configuration.nix</filename>. For instance, the following states
|
||||||
<filename>configuration.nix</filename>. For instance, the following
|
that a user account named <literal>alice</literal> shall exist:
|
||||||
states that a user account named <literal>alice</literal> shall exist:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-users.users"/>.alice = {
|
<xref linkend="opt-users.users"/>.alice = {
|
||||||
<link linkend="opt-users.users._name__.isNormalUser">isNormalUser</link> = true;
|
<link linkend="opt-users.users._name__.isNormalUser">isNormalUser</link> = true;
|
||||||
@@ -20,81 +18,71 @@ states that a user account named <literal>alice</literal> shall exist:
|
|||||||
<link linkend="opt-users.users._name__.openssh.authorizedKeys.keys">openssh.authorizedKeys.keys</link> = [ "ssh-dss AAAAB3Nza... alice@foobar" ];
|
<link linkend="opt-users.users._name__.openssh.authorizedKeys.keys">openssh.authorizedKeys.keys</link> = [ "ssh-dss AAAAB3Nza... alice@foobar" ];
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Note that <literal>alice</literal> is a member of the
|
||||||
Note that <literal>alice</literal> is a member of the
|
<literal>wheel</literal> and <literal>networkmanager</literal> groups, which
|
||||||
<literal>wheel</literal> and <literal>networkmanager</literal> groups,
|
allows her to use <command>sudo</command> to execute commands as
|
||||||
which allows her to use <command>sudo</command> to execute commands as
|
<literal>root</literal> and to configure the network, respectively. Also note
|
||||||
<literal>root</literal> and to configure the network, respectively.
|
the SSH public key that allows remote logins with the corresponding private
|
||||||
Also note the SSH public key that allows remote logins with the
|
key. Users created in this way do not have a password by default, so they
|
||||||
corresponding private key. Users created in this way do not have a
|
cannot log in via mechanisms that require a password. However, you can use
|
||||||
password by default, so they cannot log in via mechanisms that require
|
the <command>passwd</command> program to set a password, which is retained
|
||||||
a password. However, you can use the <command>passwd</command> program
|
across invocations of <command>nixos-rebuild</command>.
|
||||||
to set a password, which is retained across invocations of
|
</para>
|
||||||
<command>nixos-rebuild</command>.</para>
|
<para>
|
||||||
|
If you set <xref linkend="opt-users.mutableUsers"/> to false, then the
|
||||||
<para>If you set <xref linkend="opt-users.mutableUsers"/> to false, then the contents of
|
contents of <literal>/etc/passwd</literal> and <literal>/etc/group</literal>
|
||||||
<literal>/etc/passwd</literal> and <literal>/etc/group</literal> will be congruent to
|
will be congruent to your NixOS configuration. For instance, if you remove a
|
||||||
your NixOS configuration. For instance, if you remove a user from <xref linkend="opt-users.users"/>
|
user from <xref linkend="opt-users.users"/> and run nixos-rebuild, the user
|
||||||
and run nixos-rebuild, the user account will cease to exist. Also, imperative commands for managing users
|
account will cease to exist. Also, imperative commands for managing users and
|
||||||
and groups, such as useradd, are no longer available. Passwords may still be
|
groups, such as useradd, are no longer available. Passwords may still be
|
||||||
assigned by setting the user's <link linkend="opt-users.users._name__.hashedPassword">hashedPassword</link>
|
assigned by setting the user's
|
||||||
option. A hashed password can be generated using <command>mkpasswd -m sha-512</command>
|
<link linkend="opt-users.users._name__.hashedPassword">hashedPassword</link>
|
||||||
after installing the <literal>mkpasswd</literal> package.</para>
|
option. A hashed password can be generated using <command>mkpasswd -m
|
||||||
|
sha-512</command> after installing the <literal>mkpasswd</literal> package.
|
||||||
<para>A user ID (uid) is assigned automatically. You can also specify
|
</para>
|
||||||
a uid manually by adding
|
<para>
|
||||||
|
A user ID (uid) is assigned automatically. You can also specify a uid
|
||||||
|
manually by adding
|
||||||
<programlisting>
|
<programlisting>
|
||||||
uid = 1000;
|
uid = 1000;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
to the user specification.
|
||||||
to the user specification.</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>Groups can be specified similarly. The following states that a
|
Groups can be specified similarly. The following states that a group named
|
||||||
group named <literal>students</literal> shall exist:
|
<literal>students</literal> shall exist:
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-users.groups"/>.students.gid = 1000;
|
<xref linkend="opt-users.groups"/>.students.gid = 1000;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
As with users, the group ID (gid) is optional and will be assigned
|
||||||
As with users, the group ID (gid) is optional and will be assigned
|
automatically if it’s missing.
|
||||||
automatically if it’s missing.</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>In the imperative style, users and groups are managed by
|
In the imperative style, users and groups are managed by commands such as
|
||||||
commands such as <command>useradd</command>,
|
<command>useradd</command>, <command>groupmod</command> and so on. For
|
||||||
<command>groupmod</command> and so on. For instance, to create a user
|
instance, to create a user account named <literal>alice</literal>:
|
||||||
account named <literal>alice</literal>:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# useradd -m alice</screen>
|
# useradd -m alice</screen>
|
||||||
|
To make all nix tools available to this new user use `su - USER` which opens
|
||||||
To make all nix tools available to this new user use `su - USER` which
|
a login shell (==shell that loads the profile) for given user. This will
|
||||||
opens a login shell (==shell that loads the profile) for given user.
|
create the ~/.nix-defexpr symlink. So run:
|
||||||
This will create the ~/.nix-defexpr symlink. So run:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# su - alice -c "true"</screen>
|
# su - alice -c "true"</screen>
|
||||||
|
The flag <option>-m</option> causes the creation of a home directory for the
|
||||||
|
new user, which is generally what you want. The user does not have an initial
|
||||||
The flag <option>-m</option> causes the creation of a home directory
|
password and therefore cannot log in. A password can be set using the
|
||||||
for the new user, which is generally what you want. The user does not
|
<command>passwd</command> utility:
|
||||||
have an initial password and therefore cannot log in. A password can
|
|
||||||
be set using the <command>passwd</command> utility:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# passwd alice
|
# passwd alice
|
||||||
Enter new UNIX password: ***
|
Enter new UNIX password: ***
|
||||||
Retype new UNIX password: ***
|
Retype new UNIX password: ***
|
||||||
</screen>
|
</screen>
|
||||||
|
A user can be deleted using <command>userdel</command>:
|
||||||
A user can be deleted using <command>userdel</command>:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# userdel -r alice</screen>
|
# userdel -r alice</screen>
|
||||||
|
The flag <option>-r</option> deletes the user’s home directory. Accounts
|
||||||
The flag <option>-r</option> deletes the user’s home directory.
|
can be modified using <command>usermod</command>. Unix groups can be managed
|
||||||
Accounts can be modified using <command>usermod</command>. Unix
|
using <command>groupadd</command>, <command>groupmod</command> and
|
||||||
groups can be managed using <command>groupadd</command>,
|
<command>groupdel</command>.
|
||||||
<command>groupmod</command> and <command>groupdel</command>.</para>
|
</para>
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,22 +3,20 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-wireless">
|
xml:id="sec-wireless">
|
||||||
|
<title>Wireless Networks</title>
|
||||||
|
|
||||||
<title>Wireless Networks</title>
|
<para>
|
||||||
|
For a desktop installation using NetworkManager (e.g., GNOME), you just have
|
||||||
<para>For a desktop installation using NetworkManager (e.g., GNOME),
|
to make sure the user is in the <code>networkmanager</code> group and you can
|
||||||
you just have to make sure the user is in the
|
skip the rest of this section on wireless networks.
|
||||||
<code>networkmanager</code> group and you can skip the rest of this
|
</para>
|
||||||
section on wireless networks.</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
NixOS will start wpa_supplicant for you if you enable this setting:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
NixOS will start wpa_supplicant for you if you enable this setting:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.wireless.enable"/> = true;
|
<xref linkend="opt-networking.wireless.enable"/> = true;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
NixOS lets you specify networks for wpa_supplicant declaratively:
|
||||||
NixOS lets you specify networks for wpa_supplicant declaratively:
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-networking.wireless.networks"/> = {
|
<xref linkend="opt-networking.wireless.networks"/> = {
|
||||||
echelon = {
|
echelon = {
|
||||||
@@ -27,27 +25,21 @@ NixOS lets you specify networks for wpa_supplicant declaratively:
|
|||||||
"free.wifi" = {};
|
"free.wifi" = {};
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Be aware that keys will be written to the nix store in plaintext! When no
|
||||||
|
networks are set, it will default to using a configuration file at
|
||||||
|
<literal>/etc/wpa_supplicant.conf</literal>. You should edit this file
|
||||||
|
yourself to define wireless networks, WPA keys and so on (see
|
||||||
|
wpa_supplicant.conf(5)).
|
||||||
|
</para>
|
||||||
|
|
||||||
Be aware that keys will be written to the nix store in plaintext!
|
<para>
|
||||||
|
If you are using WPA2 the <command>wpa_passphrase</command> tool might be
|
||||||
When no networks are set, it will default to using a configuration file at
|
useful to generate the <literal>wpa_supplicant.conf</literal>.
|
||||||
<literal>/etc/wpa_supplicant.conf</literal>. You should edit this file
|
|
||||||
yourself to define wireless networks, WPA keys and so on (see
|
|
||||||
wpa_supplicant.conf(5)).
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
If you are using WPA2 the <command>wpa_passphrase</command> tool might be useful
|
|
||||||
to generate the <literal>wpa_supplicant.conf</literal>.
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# wpa_passphrase ESSID PSK > /etc/wpa_supplicant.conf</screen>
|
# wpa_passphrase ESSID PSK > /etc/wpa_supplicant.conf</screen>
|
||||||
|
After you have edited the <literal>wpa_supplicant.conf</literal>, you need to
|
||||||
After you have edited the <literal>wpa_supplicant.conf</literal>,
|
restart the wpa_supplicant service.
|
||||||
you need to restart the wpa_supplicant service.
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# systemctl restart wpa_supplicant.service</screen>
|
# systemctl restart wpa_supplicant.service</screen>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,27 +3,25 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-x11">
|
xml:id="sec-x11">
|
||||||
|
<title>X Window System</title>
|
||||||
<title>X Window System</title>
|
<para>
|
||||||
|
The X Window System (X11) provides the basis of NixOS’ graphical user
|
||||||
<para>The X Window System (X11) provides the basis of NixOS’ graphical
|
interface. It can be enabled as follows:
|
||||||
user interface. It can be enabled as follows:
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-services.xserver.enable"/> = true;
|
<xref linkend="opt-services.xserver.enable"/> = true;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
The X server will automatically detect and use the appropriate video
|
The X server will automatically detect and use the appropriate video driver
|
||||||
driver from a set of X.org drivers (such as <literal>vesa</literal>
|
from a set of X.org drivers (such as <literal>vesa</literal> and
|
||||||
and <literal>intel</literal>). You can also specify a driver
|
<literal>intel</literal>). You can also specify a driver manually, e.g.
|
||||||
manually, e.g.
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-services.xserver.videoDrivers"/> = [ "r128" ];
|
<xref linkend="opt-services.xserver.videoDrivers"/> = [ "r128" ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
to enable X.org’s <literal>xf86-video-r128</literal> driver.</para>
|
to enable X.org’s <literal>xf86-video-r128</literal> driver.
|
||||||
|
</para>
|
||||||
<para>You also need to enable at least one desktop or window manager.
|
<para>
|
||||||
Otherwise, you can only log into a plain undecorated
|
You also need to enable at least one desktop or window manager. Otherwise,
|
||||||
<command>xterm</command> window. Thus you should pick one or more of
|
you can only log into a plain undecorated <command>xterm</command> window.
|
||||||
the following lines:
|
Thus you should pick one or more of the following lines:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-services.xserver.desktopManager.plasma5.enable"/> = true;
|
<xref linkend="opt-services.xserver.desktopManager.plasma5.enable"/> = true;
|
||||||
<xref linkend="opt-services.xserver.desktopManager.xfce.enable"/> = true;
|
<xref linkend="opt-services.xserver.desktopManager.xfce.enable"/> = true;
|
||||||
@@ -33,108 +31,105 @@ the following lines:
|
|||||||
<xref linkend="opt-services.xserver.windowManager.icewm.enable"/> = true;
|
<xref linkend="opt-services.xserver.windowManager.icewm.enable"/> = true;
|
||||||
<xref linkend="opt-services.xserver.windowManager.i3.enable"/> = true;
|
<xref linkend="opt-services.xserver.windowManager.i3.enable"/> = true;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>NixOS’s default <emphasis>display manager</emphasis> (the
|
NixOS’s default <emphasis>display manager</emphasis> (the program that
|
||||||
program that provides a graphical login prompt and manages the X
|
provides a graphical login prompt and manages the X server) is SLiM. You can
|
||||||
server) is SLiM. You can select an alternative one by picking one
|
select an alternative one by picking one of the following lines:
|
||||||
of the following lines:
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-services.xserver.displayManager.sddm.enable"/> = true;
|
<xref linkend="opt-services.xserver.displayManager.sddm.enable"/> = true;
|
||||||
<xref linkend="opt-services.xserver.displayManager.lightdm.enable"/> = true;
|
<xref linkend="opt-services.xserver.displayManager.lightdm.enable"/> = true;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>You can set the keyboard layout (and optionally the layout variant):
|
You can set the keyboard layout (and optionally the layout variant):
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-services.xserver.layout"/> = "de";
|
<xref linkend="opt-services.xserver.layout"/> = "de";
|
||||||
<xref linkend="opt-services.xserver.xkbVariant"/> = "neo";
|
<xref linkend="opt-services.xserver.xkbVariant"/> = "neo";
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>The X server is started automatically at boot time. If you
|
The X server is started automatically at boot time. If you don’t want this
|
||||||
don’t want this to happen, you can set:
|
to happen, you can set:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-services.xserver.autorun"/> = false;
|
<xref linkend="opt-services.xserver.autorun"/> = false;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
The X server can then be started manually:
|
The X server can then be started manually:
|
||||||
<screen>
|
<screen>
|
||||||
# systemctl start display-manager.service
|
# systemctl start display-manager.service
|
||||||
</screen>
|
</screen>
|
||||||
</para>
|
</para>
|
||||||
|
<simplesect>
|
||||||
|
<title>NVIDIA Graphics Cards</title>
|
||||||
<simplesect><title>NVIDIA Graphics Cards</title>
|
<para>
|
||||||
|
NVIDIA provides a proprietary driver for its graphics cards that has better
|
||||||
<para>NVIDIA provides a proprietary driver for its graphics cards that
|
3D performance than the X.org drivers. It is not enabled by default because
|
||||||
has better 3D performance than the X.org drivers. It is not enabled
|
it’s not free software. You can enable it as follows:
|
||||||
by default because it’s not free software. You can enable it as follows:
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-services.xserver.videoDrivers"/> = [ "nvidia" ];
|
<xref linkend="opt-services.xserver.videoDrivers"/> = [ "nvidia" ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
Or if you have an older card, you may have to use one of the legacy drivers:
|
Or if you have an older card, you may have to use one of the legacy drivers:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-services.xserver.videoDrivers"/> = [ "nvidiaLegacy340" ];
|
<xref linkend="opt-services.xserver.videoDrivers"/> = [ "nvidiaLegacy340" ];
|
||||||
<xref linkend="opt-services.xserver.videoDrivers"/> = [ "nvidiaLegacy304" ];
|
<xref linkend="opt-services.xserver.videoDrivers"/> = [ "nvidiaLegacy304" ];
|
||||||
<xref linkend="opt-services.xserver.videoDrivers"/> = [ "nvidiaLegacy173" ];
|
<xref linkend="opt-services.xserver.videoDrivers"/> = [ "nvidiaLegacy173" ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
You may need to reboot after enabling this driver to prevent a clash
|
You may need to reboot after enabling this driver to prevent a clash with
|
||||||
with other kernel modules.</para>
|
other kernel modules.
|
||||||
|
</para>
|
||||||
<para>On 64-bit systems, if you want full acceleration for 32-bit
|
<para>
|
||||||
programs such as Wine, you should also set the following:
|
On 64-bit systems, if you want full acceleration for 32-bit programs such as
|
||||||
|
Wine, you should also set the following:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-hardware.opengl.driSupport32Bit"/> = true;
|
<xref linkend="opt-hardware.opengl.driSupport32Bit"/> = true;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
</simplesect>
|
||||||
</simplesect>
|
<simplesect>
|
||||||
|
<title>AMD Graphics Cards</title>
|
||||||
<simplesect><title>AMD Graphics Cards</title>
|
<para>
|
||||||
|
AMD provides a proprietary driver for its graphics cards that has better 3D
|
||||||
<para>AMD provides a proprietary driver for its graphics cards that
|
performance than the X.org drivers. It is not enabled by default because
|
||||||
has better 3D performance than the X.org drivers. It is not enabled
|
it’s not free software. You can enable it as follows:
|
||||||
by default because it’s not free software. You can enable it as follows:
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-services.xserver.videoDrivers"/> = [ "ati_unfree" ];
|
<xref linkend="opt-services.xserver.videoDrivers"/> = [ "ati_unfree" ];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
You will need to reboot after enabling this driver to prevent a clash
|
You will need to reboot after enabling this driver to prevent a clash with
|
||||||
with other kernel modules.</para>
|
other kernel modules.
|
||||||
|
</para>
|
||||||
<para>On 64-bit systems, if you want full acceleration for 32-bit
|
<para>
|
||||||
programs such as Wine, you should also set the following:
|
On 64-bit systems, if you want full acceleration for 32-bit programs such as
|
||||||
|
Wine, you should also set the following:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-hardware.opengl.driSupport32Bit"/> = true;
|
<xref linkend="opt-hardware.opengl.driSupport32Bit"/> = true;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
</simplesect>
|
||||||
</simplesect>
|
<simplesect>
|
||||||
|
<title>Touchpads</title>
|
||||||
<simplesect><title>Touchpads</title>
|
<para>
|
||||||
|
Support for Synaptics touchpads (found in many laptops such as the Dell
|
||||||
<para>Support for Synaptics touchpads (found in many laptops such as
|
Latitude series) can be enabled as follows:
|
||||||
the Dell Latitude series) can be enabled as follows:
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-services.xserver.libinput.enable"/> = true;
|
<xref linkend="opt-services.xserver.libinput.enable"/> = true;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
The driver has many options (see <xref linkend="ch-options"/>). For
|
The driver has many options (see <xref linkend="ch-options"/>). For
|
||||||
instance, the following disables tap-to-click behavior:
|
instance, the following disables tap-to-click behavior:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-services.xserver.libinput.tapping"/> = false;
|
<xref linkend="opt-services.xserver.libinput.tapping"/> = false;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
Note: the use of <literal>services.xserver.synaptics</literal> is deprecated since NixOS 17.09.
|
Note: the use of <literal>services.xserver.synaptics</literal> is deprecated
|
||||||
</para>
|
since NixOS 17.09.
|
||||||
|
</para>
|
||||||
</simplesect>
|
</simplesect>
|
||||||
|
<simplesect>
|
||||||
<simplesect><title>GTK/Qt themes</title>
|
<title>GTK/Qt themes</title>
|
||||||
|
<para>
|
||||||
<para>GTK themes can be installed either to user profile or system-wide (via
|
GTK themes can be installed either to user profile or system-wide (via
|
||||||
<literal>environment.systemPackages</literal>). To make Qt 5 applications look similar
|
<literal>environment.systemPackages</literal>). To make Qt 5 applications
|
||||||
to GTK2 ones, you can install <literal>qt5.qtbase.gtk</literal> package into your
|
look similar to GTK2 ones, you can install <literal>qt5.qtbase.gtk</literal>
|
||||||
system environment. It should work for all Qt 5 library versions.
|
package into your system environment. It should work for all Qt 5 library
|
||||||
</para>
|
versions.
|
||||||
|
</para>
|
||||||
</simplesect>
|
</simplesect>
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,23 +3,20 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-xfce">
|
xml:id="sec-xfce">
|
||||||
|
|
||||||
<title>Xfce Desktop Environment</title>
|
<title>Xfce Desktop Environment</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
To enable the Xfce Desktop Environment, set
|
To enable the Xfce Desktop Environment, set
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<link linkend="opt-services.xserver.desktopManager.default">services.xserver.desktopManager</link> = {
|
<link linkend="opt-services.xserver.desktopManager.default">services.xserver.desktopManager</link> = {
|
||||||
<link linkend="opt-services.xserver.desktopManager.xfce.enable">xfce.enable</link> = true;
|
<link linkend="opt-services.xserver.desktopManager.xfce.enable">xfce.enable</link> = true;
|
||||||
<link linkend="opt-services.xserver.desktopManager.default">default</link> = "xfce";
|
<link linkend="opt-services.xserver.desktopManager.default">default</link> = "xfce";
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Optionally, <emphasis>compton</emphasis>
|
Optionally, <emphasis>compton</emphasis> can be enabled for nice graphical
|
||||||
can be enabled for nice graphical effects, some example settings:
|
effects, some example settings:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<link linkend="opt-services.compton.enable">services.compton</link> = {
|
<link linkend="opt-services.compton.enable">services.compton</link> = {
|
||||||
<link linkend="opt-services.compton.enable">enable</link> = true;
|
<link linkend="opt-services.compton.enable">enable</link> = true;
|
||||||
<link linkend="opt-services.compton.fade">fade</link> = true;
|
<link linkend="opt-services.compton.fade">fade</link> = true;
|
||||||
@@ -29,66 +26,47 @@
|
|||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Some Xfce programs are not installed automatically.
|
Some Xfce programs are not installed automatically. To install them manually
|
||||||
To install them manually (system wide), put them into your
|
(system wide), put them into your
|
||||||
<xref linkend="opt-environment.systemPackages"/>.
|
<xref linkend="opt-environment.systemPackages"/>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<simplesect>
|
<simplesect>
|
||||||
<title>Thunar Volume Support</title>
|
<title>Thunar Volume Support</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
To enable
|
To enable <emphasis>Thunar</emphasis> volume support, put
|
||||||
<emphasis>Thunar</emphasis>
|
<programlisting>
|
||||||
volume support, put
|
|
||||||
<programlisting>
|
|
||||||
<xref linkend="opt-services.xserver.desktopManager.xfce.enable"/> = true;
|
<xref linkend="opt-services.xserver.desktopManager.xfce.enable"/> = true;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
into your <emphasis>configuration.nix</emphasis>.
|
into your <emphasis>configuration.nix</emphasis>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</simplesect>
|
</simplesect>
|
||||||
|
|
||||||
<simplesect>
|
<simplesect>
|
||||||
<title>Polkit Authentication Agent</title>
|
<title>Polkit Authentication Agent</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
There is no authentication agent automatically installed alongside
|
There is no authentication agent automatically installed alongside Xfce. To
|
||||||
Xfce. To allow mounting of local (non-removable) filesystems, you
|
allow mounting of local (non-removable) filesystems, you will need to
|
||||||
will need to install one.
|
install one. Installing <emphasis>polkit_gnome</emphasis>, a rebuild, logout
|
||||||
|
and login did the trick.
|
||||||
Installing <emphasis>polkit_gnome</emphasis>, a rebuild, logout and
|
|
||||||
login did the trick.
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</simplesect>
|
</simplesect>
|
||||||
|
|
||||||
<simplesect>
|
<simplesect>
|
||||||
<title>Troubleshooting</title>
|
<title>Troubleshooting</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Even after enabling udisks2, volume management might not work.
|
Even after enabling udisks2, volume management might not work. Thunar and/or
|
||||||
Thunar and/or the desktop takes time to show up.
|
the desktop takes time to show up. Thunar will spit out this kind of message
|
||||||
|
on start (look at <command>journalctl --user -b</command>).
|
||||||
Thunar will spit out this kind of message on start
|
<programlisting>
|
||||||
(look at <command>journalctl --user -b</command>).
|
|
||||||
|
|
||||||
<programlisting>
|
|
||||||
Thunar:2410): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.Private.UDisks2VolumeMonitor is not supported
|
Thunar:2410): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.Private.UDisks2VolumeMonitor is not supported
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
This is caused by some needed GNOME services not running. This is all fixed
|
||||||
This is caused by some needed GNOME services not running.
|
by enabling "Launch GNOME services on startup" in the Advanced tab of the
|
||||||
This is all fixed by enabling "Launch GNOME services on startup" in
|
Session and Startup settings panel. Alternatively, you can run this command
|
||||||
the Advanced tab of the Session and Startup settings panel.
|
to do the same thing.
|
||||||
Alternatively, you can run this command to do the same thing.
|
<programlisting>
|
||||||
<programlisting>
|
|
||||||
$ xfconf-query -c xfce4-session -p /compat/LaunchGNOME -s true
|
$ xfconf-query -c xfce4-session -p /compat/LaunchGNOME -s true
|
||||||
</programlisting>
|
</programlisting>
|
||||||
A log-out and re-log will be needed for this to take effect.
|
A log-out and re-log will be needed for this to take effect.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</simplesect>
|
</simplesect>
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,30 +3,29 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-assertions">
|
xml:id="sec-assertions">
|
||||||
|
<title>Warnings and Assertions</title>
|
||||||
|
|
||||||
<title>Warnings and Assertions</title>
|
<para>
|
||||||
|
When configuration problems are detectable in a module, it is a good idea to
|
||||||
|
write an assertion or warning. Doing so provides clear feedback to the user
|
||||||
|
and prevents errors after the build.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
When configuration problems are detectable in a module, it is a good
|
|
||||||
idea to write an assertion or warning. Doing so provides clear
|
|
||||||
feedback to the user and prevents errors after the build.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
Although Nix has the <literal>abort</literal> and
|
Although Nix has the <literal>abort</literal> and
|
||||||
<literal>builtins.trace</literal> <link xlink:href="https://nixos.org/nix/manual/#ssec-builtins">functions</link> to perform such tasks,
|
<literal>builtins.trace</literal>
|
||||||
they are not ideally suited for NixOS modules. Instead of these
|
<link xlink:href="https://nixos.org/nix/manual/#ssec-builtins">functions</link>
|
||||||
functions, you can declare your warnings and assertions using the
|
to perform such tasks, they are not ideally suited for NixOS modules. Instead
|
||||||
|
of these functions, you can declare your warnings and assertions using the
|
||||||
NixOS module system.
|
NixOS module system.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
|
<title>Warnings</title>
|
||||||
|
|
||||||
<title>Warnings</title>
|
<para>
|
||||||
|
|
||||||
<para>
|
|
||||||
This is an example of using <literal>warnings</literal>.
|
This is an example of using <literal>warnings</literal>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
@@ -43,22 +42,19 @@
|
|||||||
}
|
}
|
||||||
]]>
|
]]>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</section>
|
||||||
|
|
||||||
</section>
|
<section>
|
||||||
|
<title>Assertions</title>
|
||||||
|
|
||||||
<section>
|
<para>
|
||||||
|
|
||||||
<title>Assertions</title>
|
|
||||||
|
|
||||||
|
|
||||||
<para>
|
|
||||||
This example, extracted from the
|
This example, extracted from the
|
||||||
<link xlink:href="https://github.com/NixOS/nixpkgs/blob/release-17.09/nixos/modules/services/logging/syslogd.nix">
|
<link xlink:href="https://github.com/NixOS/nixpkgs/blob/release-17.09/nixos/modules/services/logging/syslogd.nix">
|
||||||
<literal>syslogd</literal> module
|
<literal>syslogd</literal> module </link> shows how to use
|
||||||
</link> shows how to use <literal>assertions</literal>. Since there
|
<literal>assertions</literal>. Since there can only be one active syslog
|
||||||
can only be one active syslog daemon at a time, an assertion is useful to
|
daemon at a time, an assertion is useful to prevent such a broken system
|
||||||
prevent such a broken system from being built.
|
from being built.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
@@ -74,7 +70,5 @@
|
|||||||
}
|
}
|
||||||
]]>
|
]]>
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</section>
|
||||||
</section>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,30 +3,25 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-building-cd">
|
xml:id="sec-building-cd">
|
||||||
|
<title>Building Your Own NixOS CD</title>
|
||||||
<title>Building Your Own NixOS CD</title>
|
<para>
|
||||||
|
Building a NixOS CD is as easy as configuring your own computer. The idea is
|
||||||
<para>Building a NixOS CD is as easy as configuring your own computer. The
|
to use another module which will replace your
|
||||||
idea is to use another module which will replace
|
<filename>configuration.nix</filename> to configure the system that would be
|
||||||
your <filename>configuration.nix</filename> to configure the system that
|
installed on the CD.
|
||||||
would be installed on the CD.</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>Default CD/DVD configurations are available
|
Default CD/DVD configurations are available inside
|
||||||
inside <filename>nixos/modules/installer/cd-dvd</filename>.
|
<filename>nixos/modules/installer/cd-dvd</filename>.
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ git clone https://github.com/NixOS/nixpkgs.git
|
$ git clone https://github.com/NixOS/nixpkgs.git
|
||||||
$ cd nixpkgs/nixos
|
$ cd nixpkgs/nixos
|
||||||
$ nix-build -A config.system.build.isoImage -I nixos-config=modules/installer/cd-dvd/installation-cd-minimal.nix default.nix</screen>
|
$ nix-build -A config.system.build.isoImage -I nixos-config=modules/installer/cd-dvd/installation-cd-minimal.nix default.nix</screen>
|
||||||
|
</para>
|
||||||
</para>
|
<para>
|
||||||
|
Before burning your CD/DVD, you can check the content of the image by
|
||||||
<para>Before burning your CD/DVD, you can check the content of the image by mounting anywhere like
|
mounting anywhere like suggested by the following command:
|
||||||
suggested by the following command:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# mount -o loop -t iso9660 ./result/iso/cd.iso /mnt/iso</screen>
|
# mount -o loop -t iso9660 ./result/iso/cd.iso /mnt/iso</screen>
|
||||||
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,111 +3,110 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-building-parts">
|
xml:id="sec-building-parts">
|
||||||
|
<title>Building Specific Parts of NixOS</title>
|
||||||
<title>Building Specific Parts of NixOS</title>
|
<para>
|
||||||
|
With the command <command>nix-build</command>, you can build specific parts
|
||||||
<para>With the command <command>nix-build</command>, you can build
|
of your NixOS configuration. This is done as follows:
|
||||||
specific parts of your NixOS configuration. This is done as follows:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ cd <replaceable>/path/to/nixpkgs/nixos</replaceable>
|
$ cd <replaceable>/path/to/nixpkgs/nixos</replaceable>
|
||||||
$ nix-build -A config.<replaceable>option</replaceable></screen>
|
$ nix-build -A config.<replaceable>option</replaceable></screen>
|
||||||
|
where <replaceable>option</replaceable> is a NixOS option with type
|
||||||
where <replaceable>option</replaceable> is a NixOS option with type
|
“derivation” (i.e. something that can be built). Attributes of interest
|
||||||
“derivation” (i.e. something that can be built). Attributes of
|
include:
|
||||||
interest include:
|
<variablelist>
|
||||||
|
|
||||||
<variablelist>
|
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>system.build.toplevel</varname></term>
|
<term><varname>system.build.toplevel</varname>
|
||||||
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>The top-level option that builds the entire NixOS system.
|
<para>
|
||||||
Everything else in your configuration is indirectly pulled in by
|
The top-level option that builds the entire NixOS system. Everything else
|
||||||
this option. This is what <command>nixos-rebuild</command>
|
in your configuration is indirectly pulled in by this option. This is
|
||||||
builds and what <filename>/run/current-system</filename> points
|
what <command>nixos-rebuild</command> builds and what
|
||||||
to afterwards.</para>
|
<filename>/run/current-system</filename> points to afterwards.
|
||||||
|
</para>
|
||||||
<para>A shortcut to build this is:
|
<para>
|
||||||
|
A shortcut to build this is:
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-build -A system</screen>
|
$ nix-build -A system</screen>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>system.build.manual.manual</varname></term>
|
<term><varname>system.build.manual.manual</varname>
|
||||||
<listitem><para>The NixOS manual.</para></listitem>
|
</term>
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><varname>system.build.etc</varname></term>
|
|
||||||
<listitem><para>A tree of symlinks that form the static parts of
|
|
||||||
<filename>/etc</filename>.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><varname>system.build.initialRamdisk</varname></term>
|
|
||||||
<term><varname>system.build.kernel</varname></term>
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>The initial ramdisk and kernel of the system. This allows
|
<para>
|
||||||
a quick way to test whether the kernel and the initial ramdisk
|
The NixOS manual.
|
||||||
boot correctly, by using QEMU’s <option>-kernel</option> and
|
</para>
|
||||||
<option>-initrd</option> options:
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>system.build.etc</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
A tree of symlinks that form the static parts of
|
||||||
|
<filename>/etc</filename>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>system.build.initialRamdisk</varname>
|
||||||
|
</term>
|
||||||
|
<term><varname>system.build.kernel</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The initial ramdisk and kernel of the system. This allows a quick way to
|
||||||
|
test whether the kernel and the initial ramdisk boot correctly, by using
|
||||||
|
QEMU’s <option>-kernel</option> and <option>-initrd</option> options:
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-build -A config.system.build.initialRamdisk -o initrd
|
$ nix-build -A config.system.build.initialRamdisk -o initrd
|
||||||
$ nix-build -A config.system.build.kernel -o kernel
|
$ nix-build -A config.system.build.kernel -o kernel
|
||||||
$ qemu-system-x86_64 -kernel ./kernel/bzImage -initrd ./initrd/initrd -hda /dev/null
|
$ qemu-system-x86_64 -kernel ./kernel/bzImage -initrd ./initrd/initrd -hda /dev/null
|
||||||
</screen>
|
</screen>
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>system.build.nixos-rebuild</varname></term>
|
<term><varname>system.build.nixos-rebuild</varname>
|
||||||
<term><varname>system.build.nixos-install</varname></term>
|
</term>
|
||||||
<term><varname>system.build.nixos-generate-config</varname></term>
|
<term><varname>system.build.nixos-install</varname>
|
||||||
|
</term>
|
||||||
|
<term><varname>system.build.nixos-generate-config</varname>
|
||||||
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>These build the corresponding NixOS commands.</para>
|
<para>
|
||||||
|
These build the corresponding NixOS commands.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>systemd.units.<replaceable>unit-name</replaceable>.unit</varname></term>
|
<term><varname>systemd.units.<replaceable>unit-name</replaceable>.unit</varname>
|
||||||
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>This builds the unit with the specified name. Note that
|
<para>
|
||||||
since unit names contain dots
|
This builds the unit with the specified name. Note that since unit names
|
||||||
(e.g. <literal>httpd.service</literal>), you need to put them
|
contain dots (e.g. <literal>httpd.service</literal>), you need to put
|
||||||
between quotes, like this:
|
them between quotes, like this:
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-build -A 'config.systemd.units."httpd.service".unit'
|
$ nix-build -A 'config.systemd.units."httpd.service".unit'
|
||||||
</screen>
|
</screen>
|
||||||
|
You can also test individual units, without rebuilding the whole system,
|
||||||
You can also test individual units, without rebuilding the whole
|
by putting them in <filename>/run/systemd/system</filename>:
|
||||||
system, by putting them in
|
|
||||||
<filename>/run/systemd/system</filename>:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ cp $(nix-build -A 'config.systemd.units."httpd.service".unit')/httpd.service \
|
$ cp $(nix-build -A 'config.systemd.units."httpd.service".unit')/httpd.service \
|
||||||
/run/systemd/system/tmp-httpd.service
|
/run/systemd/system/tmp-httpd.service
|
||||||
# systemctl daemon-reload
|
# systemctl daemon-reload
|
||||||
# systemctl start tmp-httpd.service
|
# systemctl start tmp-httpd.service
|
||||||
</screen>
|
</screen>
|
||||||
|
|
||||||
Note that the unit must not have the same name as any unit in
|
Note that the unit must not have the same name as any unit in
|
||||||
<filename>/etc/systemd/system</filename> since those take
|
<filename>/etc/systemd/system</filename> since those take precedence over
|
||||||
precedence over <filename>/run/systemd/system</filename>.
|
<filename>/run/systemd/system</filename>. That’s why the unit is
|
||||||
That’s why the unit is installed as
|
installed as <filename>tmp-httpd.service</filename> here.
|
||||||
<filename>tmp-httpd.service</filename> here.</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
</variablelist>
|
||||||
</variablelist>
|
</para>
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,21 +3,18 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="ch-development">
|
xml:id="ch-development">
|
||||||
|
<title>Development</title>
|
||||||
<title>Development</title>
|
<partintro>
|
||||||
|
<para>
|
||||||
<partintro>
|
This chapter describes how you can modify and extend NixOS.
|
||||||
<para>This chapter describes how you can modify and extend
|
</para>
|
||||||
NixOS.</para>
|
</partintro>
|
||||||
</partintro>
|
<xi:include href="sources.xml" />
|
||||||
|
<xi:include href="writing-modules.xml" />
|
||||||
<xi:include href="sources.xml" />
|
<xi:include href="building-parts.xml" />
|
||||||
<xi:include href="writing-modules.xml" />
|
<xi:include href="writing-documentation.xml" />
|
||||||
<xi:include href="building-parts.xml" />
|
<xi:include href="building-nixos.xml" />
|
||||||
<xi:include href="writing-documentation.xml" />
|
<xi:include href="nixos-tests.xml" />
|
||||||
<xi:include href="building-nixos.xml" />
|
<xi:include href="testing-installer.xml" />
|
||||||
<xi:include href="nixos-tests.xml" />
|
<xi:include href="releases.xml" />
|
||||||
<xi:include href="testing-installer.xml" />
|
|
||||||
<xi:include href="releases.xml" />
|
|
||||||
|
|
||||||
</part>
|
</part>
|
||||||
|
|||||||
@@ -3,13 +3,12 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-importing-modules">
|
xml:id="sec-importing-modules">
|
||||||
|
<title>Importing Modules</title>
|
||||||
|
|
||||||
<title>Importing Modules</title>
|
<para>
|
||||||
|
Sometimes NixOS modules need to be used in configuration but exist outside of
|
||||||
<para>
|
Nixpkgs. These modules can be imported:
|
||||||
Sometimes NixOS modules need to be used in configuration but exist
|
</para>
|
||||||
outside of Nixpkgs. These modules can be imported:
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
@@ -25,12 +24,11 @@
|
|||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The environment variable <literal>NIXOS_EXTRA_MODULE_PATH</literal> is
|
The environment variable <literal>NIXOS_EXTRA_MODULE_PATH</literal> is an
|
||||||
an absolute path to a NixOS module that is included alongside the
|
absolute path to a NixOS module that is included alongside the Nixpkgs NixOS
|
||||||
Nixpkgs NixOS modules. Like any NixOS module, this module can import
|
modules. Like any NixOS module, this module can import additional modules:
|
||||||
additional modules:
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
# ./module-list/default.nix
|
# ./module-list/default.nix
|
||||||
@@ -55,5 +53,4 @@
|
|||||||
services.exampleModule1.enable = true;
|
services.exampleModule1.enable = true;
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,22 +3,26 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-meta-attributes">
|
xml:id="sec-meta-attributes">
|
||||||
|
<title>Meta Attributes</title>
|
||||||
|
|
||||||
<title>Meta Attributes</title>
|
<para>
|
||||||
|
Like Nix packages, NixOS modules can declare meta-attributes to provide extra
|
||||||
<para>Like Nix packages, NixOS modules can declare meta-attributes to provide
|
information. Module meta attributes are defined in the
|
||||||
extra information. Module meta attributes are defined in the
|
|
||||||
<filename
|
<filename
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/misc/meta.nix">meta.nix</filename>
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/misc/meta.nix">meta.nix</filename>
|
||||||
special module.</para>
|
special module.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para><literal>meta</literal> is a top level attribute like
|
<para>
|
||||||
|
<literal>meta</literal> is a top level attribute like
|
||||||
<literal>options</literal> and <literal>config</literal>. Available
|
<literal>options</literal> and <literal>config</literal>. Available
|
||||||
meta-attributes are <literal>maintainers</literal> and
|
meta-attributes are <literal>maintainers</literal> and
|
||||||
<literal>doc</literal>.</para>
|
<literal>doc</literal>.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>Each of the meta-attributes must be defined at most once per module
|
<para>
|
||||||
file.</para>
|
Each of the meta-attributes must be defined at most once per module file.
|
||||||
|
</para>
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
@@ -39,24 +43,21 @@
|
|||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<calloutlist>
|
<calloutlist>
|
||||||
<callout arearefs='modules-meta-1'>
|
<callout arearefs='modules-meta-1'>
|
||||||
<para>
|
<para>
|
||||||
<varname>maintainers</varname> contains a list of the module maintainers.
|
<varname>maintainers</varname> contains a list of the module maintainers.
|
||||||
</para>
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='modules-meta-2'>
|
<callout arearefs='modules-meta-2'>
|
||||||
<para>
|
<para>
|
||||||
<varname>doc</varname> points to a valid DocBook file containing the module
|
<varname>doc</varname> points to a valid DocBook file containing the module
|
||||||
documentation. Its contents is automatically added to <xref
|
documentation. Its contents is automatically added to
|
||||||
linkend="ch-configuration"/>.
|
<xref
|
||||||
Changes to a module documentation have to be checked to not break
|
linkend="ch-configuration"/>. Changes to a module documentation
|
||||||
building the NixOS manual:
|
have to be checked to not break building the NixOS manual:
|
||||||
</para>
|
</para>
|
||||||
<programlisting>$ nix-build nixos/release.nix -A manual</programlisting>
|
<programlisting>$ nix-build nixos/release.nix -A manual</programlisting>
|
||||||
</callout>
|
</callout>
|
||||||
|
</calloutlist>
|
||||||
</calloutlist>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,18 +3,17 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-nixos-tests">
|
xml:id="sec-nixos-tests">
|
||||||
|
<title>NixOS Tests</title>
|
||||||
<title>NixOS Tests</title>
|
<para>
|
||||||
|
When you add some feature to NixOS, you should write a test for it. NixOS
|
||||||
<para>When you add some feature to NixOS, you should write a test for
|
tests are kept in the directory
|
||||||
it. NixOS tests are kept in the directory <filename
|
<filename
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/tree/master/nixos/tests">nixos/tests</filename>,
|
xlink:href="https://github.com/NixOS/nixpkgs/tree/master/nixos/tests">nixos/tests</filename>,
|
||||||
and are executed (using Nix) by a testing framework that automatically
|
and are executed (using Nix) by a testing framework that automatically starts
|
||||||
starts one or more virtual machines containing the NixOS system(s)
|
one or more virtual machines containing the NixOS system(s) required for the
|
||||||
required for the test.</para>
|
test.
|
||||||
|
</para>
|
||||||
<xi:include href="writing-nixos-tests.xml" />
|
<xi:include href="writing-nixos-tests.xml" />
|
||||||
<xi:include href="running-nixos-tests.xml" />
|
<xi:include href="running-nixos-tests.xml" />
|
||||||
<xi:include href="running-nixos-tests-interactively.xml" />
|
<xi:include href="running-nixos-tests-interactively.xml" />
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,14 +3,12 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-option-declarations">
|
xml:id="sec-option-declarations">
|
||||||
|
<title>Option Declarations</title>
|
||||||
|
|
||||||
<title>Option Declarations</title>
|
<para>
|
||||||
|
An option declaration specifies the name, type and description of a NixOS
|
||||||
<para>An option declaration specifies the name, type and description
|
configuration option. It is invalid to define an option that hasn’t been
|
||||||
of a NixOS configuration option. It is invalid to define an option
|
declared in any module. An option declaration generally looks like this:
|
||||||
that hasn’t been declared in any module. An option declaration
|
|
||||||
generally looks like this:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
options = {
|
options = {
|
||||||
<replaceable>name</replaceable> = mkOption {
|
<replaceable>name</replaceable> = mkOption {
|
||||||
@@ -21,146 +19,177 @@ options = {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
The attribute names within the <replaceable>name</replaceable> attribute path
|
||||||
The attribute names within the <replaceable>name</replaceable>
|
must be camel cased in general but should, as an exception, match the
|
||||||
attribute path must be camel cased in general but should, as an
|
<link
|
||||||
exception, match the
|
|
||||||
<link
|
|
||||||
xlink:href="https://nixos.org/nixpkgs/manual/#sec-package-naming">
|
xlink:href="https://nixos.org/nixpkgs/manual/#sec-package-naming">
|
||||||
package attribute name</link> when referencing a Nixpkgs package. For
|
package attribute name</link> when referencing a Nixpkgs package. For
|
||||||
example, the option <varname>services.nix-serve.bindAddress</varname>
|
example, the option <varname>services.nix-serve.bindAddress</varname>
|
||||||
references the <varname>nix-serve</varname> Nixpkgs package.
|
references the <varname>nix-serve</varname> Nixpkgs package.
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>The function <varname>mkOption</varname> accepts the following arguments.
|
|
||||||
|
|
||||||
<variablelist>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><varname>type</varname></term>
|
|
||||||
<listitem>
|
|
||||||
<para>The type of the option (see <xref linkend='sec-option-types' />).
|
|
||||||
It may be omitted, but that’s not advisable since it may lead to errors
|
|
||||||
that are hard to diagnose.</para>
|
|
||||||
</listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><varname>default</varname></term>
|
|
||||||
<listitem>
|
|
||||||
<para>The default value used if no value is defined by any
|
|
||||||
module. A default is not required; but if a default is not given,
|
|
||||||
then users of the module will have to define the value of the
|
|
||||||
option, otherwise an error will be thrown.</para>
|
|
||||||
</listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><varname>example</varname></term>
|
|
||||||
<listitem>
|
|
||||||
<para>An example value that will be shown in the NixOS manual.</para>
|
|
||||||
</listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><varname>description</varname></term>
|
|
||||||
<listitem>
|
|
||||||
<para>A textual description of the option, in DocBook format,
|
|
||||||
that will be included in the NixOS manual.</para>
|
|
||||||
</listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
</variablelist>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<section xml:id="sec-option-declarations-eot"><title>Extensible Option
|
|
||||||
Types</title>
|
|
||||||
|
|
||||||
<para>Extensible option types is a feature that allow to extend certain types
|
|
||||||
declaration through multiple module files.
|
|
||||||
This feature only work with a restricted set of types, namely
|
|
||||||
<literal>enum</literal> and <literal>submodules</literal> and any composed
|
|
||||||
forms of them.</para>
|
|
||||||
|
|
||||||
<para>Extensible option types can be used for <literal>enum</literal> options
|
|
||||||
that affects multiple modules, or as an alternative to related
|
|
||||||
<literal>enable</literal> options.</para>
|
|
||||||
|
|
||||||
<para>As an example, we will take the case of display managers. There is a
|
|
||||||
central display manager module for generic display manager options and a
|
|
||||||
module file per display manager backend (slim, sddm, gdm ...).
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>There are two approach to this module structure:
|
<para>
|
||||||
|
The function <varname>mkOption</varname> accepts the following arguments.
|
||||||
<itemizedlist>
|
<variablelist>
|
||||||
<listitem><para>Managing the display managers independently by adding an
|
<varlistentry>
|
||||||
enable option to every display manager module backend. (NixOS)</para>
|
<term><varname>type</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The type of the option (see <xref linkend='sec-option-types' />). It may
|
||||||
|
be omitted, but that’s not advisable since it may lead to errors that
|
||||||
|
are hard to diagnose.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem><para>Managing the display managers in the central module by
|
</varlistentry>
|
||||||
adding an option to select which display manager backend to use.</para>
|
<varlistentry>
|
||||||
|
<term><varname>default</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The default value used if no value is defined by any module. A default is
|
||||||
|
not required; but if a default is not given, then users of the module
|
||||||
|
will have to define the value of the option, otherwise an error will be
|
||||||
|
thrown.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>example</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
An example value that will be shown in the NixOS manual.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>description</varname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
A textual description of the option, in DocBook format, that will be
|
||||||
|
included in the NixOS manual.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
</variablelist>
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<section xml:id="sec-option-declarations-eot">
|
||||||
|
<title>Extensible Option Types</title>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Extensible option types is a feature that allow to extend certain types
|
||||||
|
declaration through multiple module files. This feature only work with a
|
||||||
|
restricted set of types, namely <literal>enum</literal> and
|
||||||
|
<literal>submodules</literal> and any composed forms of them.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Extensible option types can be used for <literal>enum</literal> options that
|
||||||
|
affects multiple modules, or as an alternative to related
|
||||||
|
<literal>enable</literal> options.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
As an example, we will take the case of display managers. There is a central
|
||||||
|
display manager module for generic display manager options and a module file
|
||||||
|
per display manager backend (slim, sddm, gdm ...).
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
There are two approach to this module structure:
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Managing the display managers independently by adding an enable option to
|
||||||
|
every display manager module backend. (NixOS)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Managing the display managers in the central module by adding an option
|
||||||
|
to select which display manager backend to use.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>Both approaches have problems.</para>
|
<para>
|
||||||
|
Both approaches have problems.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>Making backends independent can quickly become hard to manage. For
|
<para>
|
||||||
display managers, there can be only one enabled at a time, but the type
|
Making backends independent can quickly become hard to manage. For display
|
||||||
system can not enforce this restriction as there is no relation between
|
managers, there can be only one enabled at a time, but the type system can
|
||||||
each backend <literal>enable</literal> option. As a result, this restriction
|
not enforce this restriction as there is no relation between each backend
|
||||||
has to be done explicitely by adding assertions in each display manager
|
<literal>enable</literal> option. As a result, this restriction has to be
|
||||||
backend module.</para>
|
done explicitely by adding assertions in each display manager backend
|
||||||
|
module.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>On the other hand, managing the display managers backends in the
|
<para>
|
||||||
central module will require to change the central module option every time
|
On the other hand, managing the display managers backends in the central
|
||||||
a new backend is added or removed.</para>
|
module will require to change the central module option every time a new
|
||||||
|
backend is added or removed.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>By using extensible option types, it is possible to create a placeholder
|
<para>
|
||||||
option in the central module (<xref linkend='ex-option-declaration-eot-service'
|
By using extensible option types, it is possible to create a placeholder
|
||||||
/>), and to extend it in each backend module (<xref
|
option in the central module
|
||||||
linkend='ex-option-declaration-eot-backend-slim' />, <xref
|
(<xref linkend='ex-option-declaration-eot-service'
|
||||||
linkend='ex-option-declaration-eot-backend-sddm' />).</para>
|
/>), and to extend
|
||||||
|
it in each backend module
|
||||||
|
(<xref
|
||||||
|
linkend='ex-option-declaration-eot-backend-slim' />,
|
||||||
|
<xref
|
||||||
|
linkend='ex-option-declaration-eot-backend-sddm' />).
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>As a result, <literal>displayManager.enable</literal> option values can
|
<para>
|
||||||
be added without changing the main service module file and the type system
|
As a result, <literal>displayManager.enable</literal> option values can be
|
||||||
|
added without changing the main service module file and the type system
|
||||||
automatically enforce that there can only be a single display manager
|
automatically enforce that there can only be a single display manager
|
||||||
enabled.</para>
|
enabled.
|
||||||
|
</para>
|
||||||
|
|
||||||
<example xml:id='ex-option-declaration-eot-service'><title>Extensible type
|
<example xml:id='ex-option-declaration-eot-service'>
|
||||||
placeholder in the service module</title>
|
<title>Extensible type placeholder in the service module</title>
|
||||||
<screen>
|
<screen>
|
||||||
services.xserver.displayManager.enable = mkOption {
|
services.xserver.displayManager.enable = mkOption {
|
||||||
description = "Display manager to use";
|
description = "Display manager to use";
|
||||||
type = with types; nullOr (enum [ ]);
|
type = with types; nullOr (enum [ ]);
|
||||||
};</screen></example>
|
};</screen>
|
||||||
|
</example>
|
||||||
|
|
||||||
<example xml:id='ex-option-declaration-eot-backend-slim'><title>Extending
|
<example xml:id='ex-option-declaration-eot-backend-slim'>
|
||||||
<literal>services.xserver.displayManager.enable</literal> in the
|
<title>Extending <literal>services.xserver.displayManager.enable</literal> in the <literal>slim</literal> module</title>
|
||||||
<literal>slim</literal> module</title>
|
|
||||||
<screen>
|
<screen>
|
||||||
services.xserver.displayManager.enable = mkOption {
|
services.xserver.displayManager.enable = mkOption {
|
||||||
type = with types; nullOr (enum [ "slim" ]);
|
type = with types; nullOr (enum [ "slim" ]);
|
||||||
};</screen></example>
|
};</screen>
|
||||||
|
</example>
|
||||||
|
|
||||||
<example xml:id='ex-option-declaration-eot-backend-sddm'><title>Extending
|
<example xml:id='ex-option-declaration-eot-backend-sddm'>
|
||||||
<literal>services.xserver.displayManager.enable</literal> in the
|
<title>Extending <literal>services.xserver.displayManager.enable</literal> in the <literal>sddm</literal> module</title>
|
||||||
<literal>sddm</literal> module</title>
|
|
||||||
<screen>
|
<screen>
|
||||||
services.xserver.displayManager.enable = mkOption {
|
services.xserver.displayManager.enable = mkOption {
|
||||||
type = with types; nullOr (enum [ "sddm" ]);
|
type = with types; nullOr (enum [ "sddm" ]);
|
||||||
};</screen></example>
|
};</screen>
|
||||||
|
</example>
|
||||||
|
|
||||||
<para>The placeholder declaration is a standard <literal>mkOption</literal>
|
<para>
|
||||||
declaration, but it is important that extensible option declarations only use
|
The placeholder declaration is a standard <literal>mkOption</literal>
|
||||||
the <literal>type</literal> argument.</para>
|
declaration, but it is important that extensible option declarations only
|
||||||
|
use the <literal>type</literal> argument.
|
||||||
<para>Extensible option types work with any of the composed variants of
|
</para>
|
||||||
<literal>enum</literal> such as
|
|
||||||
<literal>with types; nullOr (enum [ "foo" "bar" ])</literal>
|
|
||||||
or <literal>with types; listOf (enum [ "foo" "bar" ])</literal>.</para>
|
|
||||||
|
|
||||||
</section>
|
<para>
|
||||||
|
Extensible option types work with any of the composed variants of
|
||||||
|
<literal>enum</literal> such as <literal>with types; nullOr (enum [ "foo"
|
||||||
|
"bar" ])</literal> or <literal>with types; listOf (enum [ "foo" "bar"
|
||||||
|
])</literal>.
|
||||||
|
</para>
|
||||||
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,39 +3,36 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-option-definitions">
|
xml:id="sec-option-definitions">
|
||||||
|
<title>Option Definitions</title>
|
||||||
|
|
||||||
<title>Option Definitions</title>
|
<para>
|
||||||
|
Option definitions are generally straight-forward bindings of values to
|
||||||
<para>Option definitions are generally straight-forward bindings of values to option names, like
|
option names, like
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
config = {
|
config = {
|
||||||
services.httpd.enable = true;
|
services.httpd.enable = true;
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
However, sometimes you need to wrap an option definition or set of option
|
||||||
|
definitions in a <emphasis>property</emphasis> to achieve certain effects:
|
||||||
|
</para>
|
||||||
|
|
||||||
However, sometimes you need to wrap an option definition or set of
|
<simplesect>
|
||||||
option definitions in a <emphasis>property</emphasis> to achieve
|
<title>Delaying Conditionals</title>
|
||||||
certain effects:</para>
|
<para>
|
||||||
|
If a set of option definitions is conditional on the value of another
|
||||||
<simplesect><title>Delaying Conditionals</title>
|
option, you may need to use <varname>mkIf</varname>. Consider, for instance:
|
||||||
|
|
||||||
<para>If a set of option definitions is conditional on the value of
|
|
||||||
another option, you may need to use <varname>mkIf</varname>.
|
|
||||||
Consider, for instance:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
config = if config.services.httpd.enable then {
|
config = if config.services.httpd.enable then {
|
||||||
environment.systemPackages = [ <replaceable>...</replaceable> ];
|
environment.systemPackages = [ <replaceable>...</replaceable> ];
|
||||||
<replaceable>...</replaceable>
|
<replaceable>...</replaceable>
|
||||||
} else {};
|
} else {};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
This definition will cause Nix to fail with an “infinite recursion”
|
||||||
This definition will cause Nix to fail with an “infinite recursion”
|
error. Why? Because the value of
|
||||||
error. Why? Because the value of
|
<option>config.services.httpd.enable</option> depends on the value being
|
||||||
<option>config.services.httpd.enable</option> depends on the value
|
constructed here. After all, you could also write the clearly circular and
|
||||||
being constructed here. After all, you could also write the clearly
|
contradictory:
|
||||||
circular and contradictory:
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
config = if config.services.httpd.enable then {
|
config = if config.services.httpd.enable then {
|
||||||
services.httpd.enable = false;
|
services.httpd.enable = false;
|
||||||
@@ -43,56 +40,49 @@ config = if config.services.httpd.enable then {
|
|||||||
services.httpd.enable = true;
|
services.httpd.enable = true;
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
The solution is to write:
|
||||||
The solution is to write:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
config = mkIf config.services.httpd.enable {
|
config = mkIf config.services.httpd.enable {
|
||||||
environment.systemPackages = [ <replaceable>...</replaceable> ];
|
environment.systemPackages = [ <replaceable>...</replaceable> ];
|
||||||
<replaceable>...</replaceable>
|
<replaceable>...</replaceable>
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
The special function <varname>mkIf</varname> causes the evaluation of the
|
||||||
The special function <varname>mkIf</varname> causes the evaluation of
|
conditional to be “pushed down” into the individual definitions, as if
|
||||||
the conditional to be “pushed down” into the individual definitions,
|
you had written:
|
||||||
as if you had written:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
config = {
|
config = {
|
||||||
environment.systemPackages = if config.services.httpd.enable then [ <replaceable>...</replaceable> ] else [];
|
environment.systemPackages = if config.services.httpd.enable then [ <replaceable>...</replaceable> ] else [];
|
||||||
<replaceable>...</replaceable>
|
<replaceable>...</replaceable>
|
||||||
};
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
|
</simplesect>
|
||||||
|
|
||||||
</para>
|
<simplesect>
|
||||||
|
<title>Setting Priorities</title>
|
||||||
</simplesect>
|
<para>
|
||||||
|
A module can override the definitions of an option in other modules by
|
||||||
<simplesect><title>Setting Priorities</title>
|
setting a <emphasis>priority</emphasis>. All option definitions that do not
|
||||||
|
have the lowest priority value are discarded. By default, option definitions
|
||||||
<para>A module can override the definitions of an option in other
|
have priority 1000. You can specify an explicit priority by using
|
||||||
modules by setting a <emphasis>priority</emphasis>. All option
|
<varname>mkOverride</varname>, e.g.
|
||||||
definitions that do not have the lowest priority value are discarded.
|
|
||||||
By default, option definitions have priority 1000. You can specify an
|
|
||||||
explicit priority by using <varname>mkOverride</varname>, e.g.
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
services.openssh.enable = mkOverride 10 false;
|
services.openssh.enable = mkOverride 10 false;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
This definition causes all other definitions with priorities above 10 to be
|
||||||
|
discarded. The function <varname>mkForce</varname> is equal to
|
||||||
|
<varname>mkOverride 50</varname>.
|
||||||
|
</para>
|
||||||
|
</simplesect>
|
||||||
|
|
||||||
This definition causes all other definitions with priorities above 10
|
<simplesect>
|
||||||
to be discarded. The function <varname>mkForce</varname> is
|
<title>Merging Configurations</title>
|
||||||
equal to <varname>mkOverride 50</varname>.</para>
|
<para>
|
||||||
|
In conjunction with <literal>mkIf</literal>, it is sometimes useful for a
|
||||||
</simplesect>
|
module to return multiple sets of option definitions, to be merged together
|
||||||
|
as if they were declared in separate modules. This can be done using
|
||||||
<simplesect><title>Merging Configurations</title>
|
<varname>mkMerge</varname>:
|
||||||
|
|
||||||
<para>In conjunction with <literal>mkIf</literal>, it is sometimes
|
|
||||||
useful for a module to return multiple sets of option definitions, to
|
|
||||||
be merged together as if they were declared in separate modules. This
|
|
||||||
can be done using <varname>mkMerge</varname>:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
config = mkMerge
|
config = mkMerge
|
||||||
[ # Unconditional stuff.
|
[ # Unconditional stuff.
|
||||||
@@ -104,9 +94,6 @@ config = mkMerge
|
|||||||
})
|
})
|
||||||
];
|
];
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
</para>
|
</simplesect>
|
||||||
|
|
||||||
</simplesect>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -3,10 +3,8 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="ch-releases">
|
xml:id="ch-releases">
|
||||||
|
<title>Releases</title>
|
||||||
<title>Releases</title>
|
<section xml:id="release-process">
|
||||||
|
|
||||||
<section xml:id="release-process">
|
|
||||||
<title>Release process</title>
|
<title>Release process</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
@@ -15,83 +13,84 @@
|
|||||||
|
|
||||||
<section xml:id="one-month-before-the-beta">
|
<section xml:id="one-month-before-the-beta">
|
||||||
<title>One month before the beta</title>
|
<title>One month before the beta</title>
|
||||||
|
|
||||||
<itemizedlist spacing="compact">
|
<itemizedlist spacing="compact">
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Send an email to the nix-devel mailinglist as a warning about upcoming beta "feature freeze" in a month.
|
Send an email to the nix-devel mailinglist as a warning about upcoming
|
||||||
|
beta "feature freeze" in a month.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Discuss with Eelco Dolstra and the community (via IRC, ML) about what will reach the deadline.
|
Discuss with Eelco Dolstra and the community (via IRC, ML) about what
|
||||||
Any issue or Pull Request targeting the release should be included in the release milestone.
|
will reach the deadline. Any issue or Pull Request targeting the release
|
||||||
|
should be included in the release milestone.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="at-beta-release-time">
|
<section xml:id="at-beta-release-time">
|
||||||
<title>At beta release time</title>
|
<title>At beta release time</title>
|
||||||
|
|
||||||
<itemizedlist spacing="compact">
|
<itemizedlist spacing="compact">
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<link xlink:href="https://github.com/NixOS/nixpkgs/issues/13559">Create
|
<link xlink:href="https://github.com/NixOS/nixpkgs/issues/13559">Create
|
||||||
an issue for tracking Zero Hydra Failures progress. ZHF is an effort
|
an issue for tracking Zero Hydra Failures progress. ZHF is an effort to
|
||||||
to get build failures down to zero.</link>
|
get build failures down to zero.</link>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<literal>git tag -a -s -m "Release 17.09-beta" 17.09-beta && git push --tags</literal>
|
<literal>git tag -a -s -m "Release 17.09-beta" 17.09-beta
|
||||||
|
&& git push --tags</literal>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
From the master branch run <literal>git checkout -B release-17.09</literal>.
|
From the master branch run <literal>git checkout -B
|
||||||
|
release-17.09</literal>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<link xlink:href="https://github.com/NixOS/nixos-org-configurations/pull/18">
|
<link xlink:href="https://github.com/NixOS/nixos-org-configurations/pull/18">
|
||||||
Make sure a channel is created at http://nixos.org/channels/.
|
Make sure a channel is created at http://nixos.org/channels/. </link>
|
||||||
</link>
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<link xlink:href="https://github.com/NixOS/nixpkgs/settings/branches">
|
<link xlink:href="https://github.com/NixOS/nixpkgs/settings/branches">
|
||||||
Let a GitHub nixpkgs admin lock the branch on github for you.
|
Let a GitHub nixpkgs admin lock the branch on github for you. (so
|
||||||
(so developers can’t force push)
|
developers can’t force push) </link>
|
||||||
</link>
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<link xlink:href="https://github.com/NixOS/nixpkgs/compare/bdf161ed8d21...6b63c4616790">
|
<link xlink:href="https://github.com/NixOS/nixpkgs/compare/bdf161ed8d21...6b63c4616790">
|
||||||
Bump the <literal>system.defaultChannel</literal> attribute in
|
Bump the <literal>system.defaultChannel</literal> attribute in
|
||||||
<literal>nixos/modules/misc/version.nix</literal>
|
<literal>nixos/modules/misc/version.nix</literal> </link>
|
||||||
</link>
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<link xlink:href="https://github.com/NixOS/nixpkgs/commit/d6b08acd1ccac0d9d502c4b635e00b04d3387f06">
|
<link xlink:href="https://github.com/NixOS/nixpkgs/commit/d6b08acd1ccac0d9d502c4b635e00b04d3387f06">
|
||||||
Update <literal>versionSuffix</literal> in
|
Update <literal>versionSuffix</literal> in
|
||||||
<literal>nixos/release.nix</literal></link>, use
|
<literal>nixos/release.nix</literal></link>, use <literal>git log
|
||||||
<literal>git log --format=%an|wc -l</literal> to get the commit
|
--format=%an|wc -l</literal> to get the commit count
|
||||||
count
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<literal>echo -n "18.03" > .version</literal> on
|
<literal>echo -n "18.03" > .version</literal> on master.
|
||||||
master.
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<link xlink:href="https://github.com/NixOS/nixpkgs/commit/b8a4095003e27659092892a4708bb3698231a842">
|
<link xlink:href="https://github.com/NixOS/nixpkgs/commit/b8a4095003e27659092892a4708bb3698231a842">
|
||||||
Pick a new name for the unstable branch.
|
Pick a new name for the unstable branch. </link>
|
||||||
</link>
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
@@ -102,20 +101,22 @@
|
|||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Create two Hydra jobsets: release-17.09 and release-17.09-small with <literal>stableBranch</literal> set to false.
|
Create two Hydra jobsets: release-17.09 and release-17.09-small with
|
||||||
|
<literal>stableBranch</literal> set to false.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Edit changelog at
|
Edit changelog at
|
||||||
<literal>nixos/doc/manual/release-notes/rl-1709.xml</literal>
|
<literal>nixos/doc/manual/release-notes/rl-1709.xml</literal> (double
|
||||||
(double check desktop versions are noted)
|
check desktop versions are noted)
|
||||||
</para>
|
</para>
|
||||||
<itemizedlist spacing="compact">
|
<itemizedlist spacing="compact">
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Get all new NixOS modules
|
Get all new NixOS modules <literal>git diff
|
||||||
<literal>git diff release-17.03..release-17.09 nixos/modules/module-list.nix|grep ^+</literal>
|
release-17.03..release-17.09 nixos/modules/module-list.nix|grep
|
||||||
|
^+</literal>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
@@ -127,19 +128,23 @@
|
|||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="during-beta">
|
<section xml:id="during-beta">
|
||||||
<title>During Beta</title>
|
<title>During Beta</title>
|
||||||
|
|
||||||
<itemizedlist spacing="compact">
|
<itemizedlist spacing="compact">
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Monitor the master branch for bugfixes and minor updates
|
Monitor the master branch for bugfixes and minor updates and cherry-pick
|
||||||
and cherry-pick them to the release branch.
|
them to the release branch.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="before-the-final-release">
|
<section xml:id="before-the-final-release">
|
||||||
<title>Before the final release</title>
|
<title>Before the final release</title>
|
||||||
|
|
||||||
<itemizedlist spacing="compact">
|
<itemizedlist spacing="compact">
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
@@ -150,26 +155,27 @@
|
|||||||
<para>
|
<para>
|
||||||
Release Nix (currently only Eelco Dolstra can do that).
|
Release Nix (currently only Eelco Dolstra can do that).
|
||||||
<link xlink:href="https://github.com/NixOS/nixpkgs/commit/53710c752a85f00658882531bc90a23a3d1287e4">
|
<link xlink:href="https://github.com/NixOS/nixpkgs/commit/53710c752a85f00658882531bc90a23a3d1287e4">
|
||||||
Make sure fallback is updated.
|
Make sure fallback is updated. </link>
|
||||||
</link>
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<link xlink:href="https://github.com/NixOS/nixpkgs/commit/40fd9ae3ac8048758abdcfc7d28a78b5f22fe97e">
|
<link xlink:href="https://github.com/NixOS/nixpkgs/commit/40fd9ae3ac8048758abdcfc7d28a78b5f22fe97e">
|
||||||
Update README.md with new stable NixOS version information.
|
Update README.md with new stable NixOS version information. </link>
|
||||||
</link>
|
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Change <literal>stableBranch</literal> to true and wait for channel to update.
|
Change <literal>stableBranch</literal> to true and wait for channel to
|
||||||
|
update.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="at-final-release-time">
|
<section xml:id="at-final-release-time">
|
||||||
<title>At final release time</title>
|
<title>At final release time</title>
|
||||||
|
|
||||||
<itemizedlist spacing="compact">
|
<itemizedlist spacing="compact">
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
@@ -178,32 +184,34 @@
|
|||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Update http://nixos.org/nixos/download.html and http://nixos.org/nixos/manual in https://github.com/NixOS/nixos-org-configurations
|
Update http://nixos.org/nixos/download.html and
|
||||||
|
http://nixos.org/nixos/manual in
|
||||||
|
https://github.com/NixOS/nixos-org-configurations
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Get number of commits for the release:
|
Get number of commits for the release: <literal>git log
|
||||||
<literal>git log release-14.04..release-14.12 --format=%an|wc -l</literal>
|
release-14.04..release-14.12 --format=%an|wc -l</literal>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Commits by contributor:
|
Commits by contributor: <literal>git log release-14.04..release-14.12
|
||||||
<literal>git log release-14.04..release-14.12 --format=%an|sort|uniq -c|sort -rn</literal>
|
--format=%an|sort|uniq -c|sort -rn</literal>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Send an email to nix-dev to announce the release with above information. Best to check how previous email was formulated
|
Send an email to nix-dev to announce the release with above information.
|
||||||
to see what needs to be included.
|
Best to check how previous email was formulated to see what needs to be
|
||||||
|
included.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
<section xml:id="release-schedule">
|
||||||
<section xml:id="release-schedule">
|
|
||||||
<title>Release schedule</title>
|
<title>Release schedule</title>
|
||||||
|
|
||||||
<informaltable>
|
<informaltable>
|
||||||
@@ -233,8 +241,7 @@
|
|||||||
<entry>
|
<entry>
|
||||||
2016-09-01
|
2016-09-01
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry><literal>release-16.09</literal> branch and corresponding jobsets are created,
|
||||||
<literal>release-16.09</literal> branch and corresponding jobsets are created,
|
|
||||||
change freeze
|
change freeze
|
||||||
</entry>
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
@@ -249,6 +256,5 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</tgroup>
|
</tgroup>
|
||||||
</informaltable>
|
</informaltable>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,27 +3,31 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-replace-modules">
|
xml:id="sec-replace-modules">
|
||||||
|
<title>Replace Modules</title>
|
||||||
|
|
||||||
<title>Replace Modules</title>
|
<para>
|
||||||
|
Modules that are imported can also be disabled. The option declarations and
|
||||||
<para>Modules that are imported can also be disabled. The option
|
config implementation of a disabled module will be ignored, allowing another
|
||||||
declarations and config implementation of a disabled module will be
|
to take it's place. This can be used to import a set of modules from another
|
||||||
ignored, allowing another to take it's place. This can be used to
|
channel while keeping the rest of the system on a stable release.
|
||||||
import a set of modules from another channel while keeping the rest
|
|
||||||
of the system on a stable release.</para>
|
|
||||||
<para><literal>disabledModules</literal> is a top level attribute like
|
|
||||||
<literal>imports</literal>, <literal>options</literal> and
|
|
||||||
<literal>config</literal>. It contains a list of modules that will
|
|
||||||
be disabled. This can either be the full path to the module or a
|
|
||||||
string with the filename relative to the modules path
|
|
||||||
(eg. <nixpkgs/nixos/modules> for nixos).
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>This example will replace the existing postgresql module with
|
<para>
|
||||||
the version defined in the nixos-unstable channel while keeping the
|
<literal>disabledModules</literal> is a top level attribute like
|
||||||
rest of the modules and packages from the original nixos channel.
|
<literal>imports</literal>, <literal>options</literal> and
|
||||||
This only overrides the module definition, this won't use postgresql
|
<literal>config</literal>. It contains a list of modules that will be
|
||||||
from nixos-unstable unless explicitly configured to do so.</para>
|
disabled. This can either be the full path to the module or a string with the
|
||||||
|
filename relative to the modules path (eg. <nixpkgs/nixos/modules> for
|
||||||
|
nixos).
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
This example will replace the existing postgresql module with the version
|
||||||
|
defined in the nixos-unstable channel while keeping the rest of the modules
|
||||||
|
and packages from the original nixos channel. This only overrides the module
|
||||||
|
definition, this won't use postgresql from nixos-unstable unless explicitly
|
||||||
|
configured to do so.
|
||||||
|
</para>
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
@@ -41,10 +45,11 @@
|
|||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>This example shows how to define a custom module as a
|
<para>
|
||||||
replacement for an existing module. Importing this module will
|
This example shows how to define a custom module as a replacement for an
|
||||||
disable the original module without having to know it's
|
existing module. Importing this module will disable the original module
|
||||||
implementation details.</para>
|
without having to know it's implementation details.
|
||||||
|
</para>
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
@@ -71,5 +76,4 @@ in
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,41 +3,38 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-running-nixos-tests">
|
xml:id="sec-running-nixos-tests">
|
||||||
<title>Running Tests interactively</title>
|
<title>Running Tests interactively</title>
|
||||||
|
|
||||||
<para>The test itself can be run interactively. This is
|
|
||||||
particularly useful when developing or debugging a test:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The test itself can be run interactively. This is particularly useful when
|
||||||
|
developing or debugging a test:
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-build nixos/tests/login.nix -A driver
|
$ nix-build nixos/tests/login.nix -A driver
|
||||||
$ ./result/bin/nixos-test-driver
|
$ ./result/bin/nixos-test-driver
|
||||||
starting VDE switch for network 1
|
starting VDE switch for network 1
|
||||||
>
|
>
|
||||||
</screen>
|
</screen>
|
||||||
|
You can then take any Perl statement, e.g.
|
||||||
You can then take any Perl statement, e.g.
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
> startAll
|
> startAll
|
||||||
> testScript
|
> testScript
|
||||||
> $machine->succeed("touch /tmp/foo")
|
> $machine->succeed("touch /tmp/foo")
|
||||||
</screen>
|
</screen>
|
||||||
|
The function <command>testScript</command> executes the entire test script
|
||||||
|
and drops you back into the test driver command line upon its completion.
|
||||||
|
This allows you to inspect the state of the VMs after the test (e.g. to debug
|
||||||
|
the test script).
|
||||||
|
</para>
|
||||||
|
|
||||||
The function <command>testScript</command> executes the entire test
|
<para>
|
||||||
script and drops you back into the test driver command line upon its
|
To just start and experiment with the VMs, run:
|
||||||
completion. This allows you to inspect the state of the VMs after the
|
|
||||||
test (e.g. to debug the test script).</para>
|
|
||||||
|
|
||||||
<para>To just start and experiment with the VMs, run:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-build nixos/tests/login.nix -A driver
|
$ nix-build nixos/tests/login.nix -A driver
|
||||||
$ ./result/bin/nixos-run-vms
|
$ ./result/bin/nixos-run-vms
|
||||||
</screen>
|
</screen>
|
||||||
|
The script <command>nixos-run-vms</command> starts the virtual machines
|
||||||
The script <command>nixos-run-vms</command> starts the virtual
|
defined by test. The root file system of the VMs is created on the fly and
|
||||||
machines defined by test. The root file system of the VMs is created
|
kept across VM restarts in
|
||||||
on the fly and kept across VM restarts in
|
<filename>./</filename><varname>hostname</varname><filename>.qcow2</filename>.
|
||||||
<filename>./</filename><varname>hostname</varname><filename>.qcow2</filename>.</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,20 +3,18 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-running-nixos-tests-interactively">
|
xml:id="sec-running-nixos-tests-interactively">
|
||||||
|
<title>Running Tests</title>
|
||||||
|
|
||||||
<title>Running Tests</title>
|
<para>
|
||||||
|
You can run tests using <command>nix-build</command>. For example, to run the
|
||||||
<para>You can run tests using <command>nix-build</command>. For
|
test
|
||||||
example, to run the test <filename
|
<filename
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/tests/login.nix">login.nix</filename>,
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/tests/login.nix">login.nix</filename>,
|
||||||
you just do:
|
you just do:
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-build '<nixpkgs/nixos/tests/login.nix>'
|
$ nix-build '<nixpkgs/nixos/tests/login.nix>'
|
||||||
</screen>
|
</screen>
|
||||||
|
or, if you don’t want to rely on <envar>NIX_PATH</envar>:
|
||||||
or, if you don’t want to rely on <envar>NIX_PATH</envar>:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ cd /my/nixpkgs/nixos/tests
|
$ cd /my/nixpkgs/nixos/tests
|
||||||
$ nix-build login.nix
|
$ nix-build login.nix
|
||||||
@@ -26,16 +24,13 @@ machine: QEMU running (pid 8841)
|
|||||||
…
|
…
|
||||||
6 out of 6 tests succeeded
|
6 out of 6 tests succeeded
|
||||||
</screen>
|
</screen>
|
||||||
|
After building/downloading all required dependencies, this will perform a
|
||||||
After building/downloading all required dependencies, this will
|
build that starts a QEMU/KVM virtual machine containing a NixOS system. The
|
||||||
perform a build that starts a QEMU/KVM virtual machine containing a
|
virtual machine mounts the Nix store of the host; this makes VM creation very
|
||||||
NixOS system. The virtual machine mounts the Nix store of the host;
|
fast, as no disk image needs to be created. Afterwards, you can view a
|
||||||
this makes VM creation very fast, as no disk image needs to be
|
pretty-printed log of the test:
|
||||||
created. Afterwards, you can view a pretty-printed log of the test:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ firefox result/log.html
|
$ firefox result/log.html
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
</para>
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,101 +3,84 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-getting-sources">
|
xml:id="sec-getting-sources">
|
||||||
|
<title>Getting the Sources</title>
|
||||||
<title>Getting the Sources</title>
|
<para>
|
||||||
|
By default, NixOS’s <command>nixos-rebuild</command> command uses the NixOS
|
||||||
<para>By default, NixOS’s <command>nixos-rebuild</command> command
|
and Nixpkgs sources provided by the <literal>nixos</literal> channel (kept in
|
||||||
uses the NixOS and Nixpkgs sources provided by the
|
<filename>/nix/var/nix/profiles/per-user/root/channels/nixos</filename>). To
|
||||||
<literal>nixos</literal> channel (kept in
|
modify NixOS, however, you should check out the latest sources from Git. This
|
||||||
<filename>/nix/var/nix/profiles/per-user/root/channels/nixos</filename>).
|
is as follows:
|
||||||
To modify NixOS, however, you should check out the latest sources from
|
|
||||||
Git. This is as follows:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ git clone git://github.com/NixOS/nixpkgs.git
|
$ git clone git://github.com/NixOS/nixpkgs.git
|
||||||
$ cd nixpkgs
|
$ cd nixpkgs
|
||||||
$ git remote add channels git://github.com/NixOS/nixpkgs-channels.git
|
$ git remote add channels git://github.com/NixOS/nixpkgs-channels.git
|
||||||
$ git remote update channels
|
$ git remote update channels
|
||||||
</screen>
|
</screen>
|
||||||
|
This will check out the latest Nixpkgs sources to
|
||||||
This will check out the latest Nixpkgs sources to
|
<filename>./nixpkgs</filename> the NixOS sources to
|
||||||
<filename>./nixpkgs</filename> the NixOS sources to
|
<filename>./nixpkgs/nixos</filename>. (The NixOS source tree lives in a
|
||||||
<filename>./nixpkgs/nixos</filename>. (The NixOS source tree lives in
|
subdirectory of the Nixpkgs repository.) The remote
|
||||||
a subdirectory of the Nixpkgs repository.) The remote
|
<literal>channels</literal> refers to a read-only repository that tracks the
|
||||||
<literal>channels</literal> refers to a read-only repository that
|
Nixpkgs/NixOS channels (see <xref linkend="sec-upgrading"/> for more
|
||||||
tracks the Nixpkgs/NixOS channels (see <xref linkend="sec-upgrading"/>
|
information about channels). Thus, the Git branch
|
||||||
for more information about channels). Thus, the Git branch
|
<literal>channels/nixos-17.03</literal> will contain the latest built and
|
||||||
<literal>channels/nixos-17.03</literal> will contain the latest built
|
tested version available in the <literal>nixos-17.03</literal> channel.
|
||||||
and tested version available in the <literal>nixos-17.03</literal>
|
</para>
|
||||||
channel.</para>
|
<para>
|
||||||
|
It’s often inconvenient to develop directly on the master branch, since if
|
||||||
<para>It’s often inconvenient to develop directly on the master
|
somebody has just committed (say) a change to GCC, then the binary cache may
|
||||||
branch, since if somebody has just committed (say) a change to GCC,
|
not have caught up yet and you’ll have to rebuild everything from source.
|
||||||
then the binary cache may not have caught up yet and you’ll have to
|
So you may want to create a local branch based on your current NixOS version:
|
||||||
rebuild everything from source. So you may want to create a local
|
|
||||||
branch based on your current NixOS version:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nixos-version
|
$ nixos-version
|
||||||
17.09pre104379.6e0b727 (Hummingbird)
|
17.09pre104379.6e0b727 (Hummingbird)
|
||||||
|
|
||||||
$ git checkout -b local 6e0b727
|
$ git checkout -b local 6e0b727
|
||||||
</screen>
|
</screen>
|
||||||
|
Or, to base your local branch on the latest version available in a NixOS
|
||||||
Or, to base your local branch on the latest version available in a
|
channel:
|
||||||
NixOS channel:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ git remote update channels
|
$ git remote update channels
|
||||||
$ git checkout -b local channels/nixos-17.03
|
$ git checkout -b local channels/nixos-17.03
|
||||||
</screen>
|
</screen>
|
||||||
|
(Replace <literal>nixos-17.03</literal> with the name of the channel you want
|
||||||
(Replace <literal>nixos-17.03</literal> with the name of the channel
|
to use.) You can use <command>git merge</command> or <command>git
|
||||||
you want to use.) You can use <command>git merge</command> or
|
rebase</command> to keep your local branch in sync with the channel, e.g.
|
||||||
<command>git rebase</command> to keep your local branch in sync with
|
|
||||||
the channel, e.g.
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ git remote update channels
|
$ git remote update channels
|
||||||
$ git merge channels/nixos-17.03
|
$ git merge channels/nixos-17.03
|
||||||
</screen>
|
</screen>
|
||||||
|
You can use <command>git cherry-pick</command> to copy commits from your
|
||||||
You can use <command>git cherry-pick</command> to copy commits from
|
local branch to the upstream branch.
|
||||||
your local branch to the upstream branch.</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>If you want to rebuild your system using your (modified)
|
If you want to rebuild your system using your (modified) sources, you need to
|
||||||
sources, you need to tell <command>nixos-rebuild</command> about them
|
tell <command>nixos-rebuild</command> about them using the
|
||||||
using the <option>-I</option> flag:
|
<option>-I</option> flag:
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-rebuild switch -I nixpkgs=<replaceable>/my/sources</replaceable>/nixpkgs
|
# nixos-rebuild switch -I nixpkgs=<replaceable>/my/sources</replaceable>/nixpkgs
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
</para>
|
<para>
|
||||||
|
If you want <command>nix-env</command> to use the expressions in
|
||||||
<para>If you want <command>nix-env</command> to use the expressions in
|
<replaceable>/my/sources</replaceable>, use <command>nix-env -f
|
||||||
<replaceable>/my/sources</replaceable>, use <command>nix-env -f
|
<replaceable>/my/sources</replaceable>/nixpkgs</command>, or change the
|
||||||
<replaceable>/my/sources</replaceable>/nixpkgs</command>, or change
|
default by adding a symlink in <filename>~/.nix-defexpr</filename>:
|
||||||
the default by adding a symlink in
|
|
||||||
<filename>~/.nix-defexpr</filename>:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ ln -s <replaceable>/my/sources</replaceable>/nixpkgs ~/.nix-defexpr/nixpkgs
|
$ ln -s <replaceable>/my/sources</replaceable>/nixpkgs ~/.nix-defexpr/nixpkgs
|
||||||
</screen>
|
</screen>
|
||||||
|
You may want to delete the symlink
|
||||||
You may want to delete the symlink
|
<filename>~/.nix-defexpr/channels_root</filename> to prevent root’s NixOS
|
||||||
<filename>~/.nix-defexpr/channels_root</filename> to prevent root’s
|
channel from clashing with your own tree (this may break the
|
||||||
NixOS channel from clashing with your own tree (this may break the
|
command-not-found utility though). If you want to go back to the default
|
||||||
command-not-found utility though). If you want to go back to the default
|
state, you may just remove the <filename>~/.nix-defexpr</filename> directory
|
||||||
state, you may just remove the <filename>~/.nix-defexpr</filename>
|
completely, log out and log in again and it should have been recreated with a
|
||||||
directory completely, log out and log in again and it should have been
|
link to the root channels.
|
||||||
recreated with a link to the root channels.</para>
|
</para>
|
||||||
|
|
||||||
<!-- FIXME: not sure what this means.
|
<!-- FIXME: not sure what this means.
|
||||||
<para>You should not pass the base directory
|
<para>You should not pass the base directory
|
||||||
<filename><replaceable>/my/sources</replaceable></filename>
|
<filename><replaceable>/my/sources</replaceable></filename>
|
||||||
to <command>nix-env</command>, as it will break after interpreting expressions
|
to <command>nix-env</command>, as it will break after interpreting expressions
|
||||||
in <filename>nixos/</filename> as packages.</para>
|
in <filename>nixos/</filename> as packages.</para>
|
||||||
-->
|
-->
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,27 +3,20 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="ch-testing-installer">
|
xml:id="ch-testing-installer">
|
||||||
|
<title>Testing the Installer</title>
|
||||||
<title>Testing the Installer</title>
|
<para>
|
||||||
|
Building, burning, and booting from an installation CD is rather tedious, so
|
||||||
<para>Building, burning, and booting from an installation CD is rather
|
here is a quick way to see if the installer works properly:
|
||||||
tedious, so here is a quick way to see if the installer works
|
|
||||||
properly:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# mount -t tmpfs none /mnt
|
# mount -t tmpfs none /mnt
|
||||||
# nixos-generate-config --root /mnt
|
# nixos-generate-config --root /mnt
|
||||||
$ nix-build '<nixpkgs/nixos>' -A config.system.build.nixos-install
|
$ nix-build '<nixpkgs/nixos>' -A config.system.build.nixos-install
|
||||||
# ./result/bin/nixos-install</screen>
|
# ./result/bin/nixos-install</screen>
|
||||||
|
To start a login shell in the new NixOS installation in
|
||||||
To start a login shell in the new NixOS installation in
|
<filename>/mnt</filename>:
|
||||||
<filename>/mnt</filename>:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nix-build '<nixpkgs/nixos>' -A config.system.build.nixos-enter
|
$ nix-build '<nixpkgs/nixos>' -A config.system.build.nixos-enter
|
||||||
# ./result/bin/nixos-enter
|
# ./result/bin/nixos-enter
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,157 +3,147 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-writing-documentation">
|
xml:id="sec-writing-documentation">
|
||||||
|
<title>Writing NixOS Documentation</title>
|
||||||
|
<para>
|
||||||
|
As NixOS grows, so too does the need for a catalogue and explanation of its
|
||||||
|
extensive functionality. Collecting pertinent information from disparate
|
||||||
|
sources and presenting it in an accessible style would be a worthy
|
||||||
|
contribution to the project.
|
||||||
|
</para>
|
||||||
|
<section>
|
||||||
|
<title>Building the Manual</title>
|
||||||
|
|
||||||
<title>Writing NixOS Documentation</title>
|
<para>
|
||||||
|
|
||||||
<para>
|
|
||||||
As NixOS grows, so too does the need for a catalogue and explanation
|
|
||||||
of its extensive functionality. Collecting pertinent information
|
|
||||||
from disparate sources and presenting it in an accessible style
|
|
||||||
would be a worthy contribution to the project.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>Building the Manual</title>
|
|
||||||
<para>
|
|
||||||
The DocBook sources of the <xref linkend="book-nixos-manual"/> are in the
|
The DocBook sources of the <xref linkend="book-nixos-manual"/> are in the
|
||||||
<link xlink:href="https://github.com/NixOS/nixpkgs/tree/master/nixos/doc/manual"><filename>nixos/doc/manual</filename></link>
|
<link xlink:href="https://github.com/NixOS/nixpkgs/tree/master/nixos/doc/manual"><filename>nixos/doc/manual</filename></link>
|
||||||
subdirectory of the Nixpkgs repository.
|
subdirectory of the Nixpkgs repository.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
You can quickly validate your edits with <command>make</command>:
|
You can quickly validate your edits with <command>make</command>:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ cd /path/to/nixpkgs/nixos/doc/manual
|
$ cd /path/to/nixpkgs/nixos/doc/manual
|
||||||
$ make
|
$ make
|
||||||
</screen>
|
</screen>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Once you are done making modifications to the manual, it's important
|
Once you are done making modifications to the manual, it's important to
|
||||||
to build it before committing. You can do that as follows:
|
build it before committing. You can do that as follows:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen>nix-build nixos/release.nix -A manual.x86_64-linux</screen>
|
<screen>nix-build nixos/release.nix -A manual.x86_64-linux</screen>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
When this command successfully finishes, it will tell you where the
|
When this command successfully finishes, it will tell you where the manual
|
||||||
manual got generated. The HTML will be accessible through the
|
got generated. The HTML will be accessible through the
|
||||||
<filename>result</filename> symlink at
|
<filename>result</filename> symlink at
|
||||||
<filename>./result/share/doc/nixos/index.html</filename>.
|
<filename>./result/share/doc/nixos/index.html</filename>.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
<section>
|
||||||
|
<title>Editing DocBook XML</title>
|
||||||
|
|
||||||
<section>
|
<para>
|
||||||
<title>Editing DocBook XML</title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
For general information on how to write in DocBook, see
|
For general information on how to write in DocBook, see
|
||||||
<link xlink:href="http://www.docbook.org/tdg5/en/html/docbook.html">
|
<link xlink:href="http://www.docbook.org/tdg5/en/html/docbook.html"> DocBook
|
||||||
DocBook 5: The Definitive Guide</link>.
|
5: The Definitive Guide</link>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Emacs nXML Mode is very helpful for editing DocBook XML because it
|
Emacs nXML Mode is very helpful for editing DocBook XML because it validates
|
||||||
validates the document as you write, and precisely locates
|
the document as you write, and precisely locates errors. To use it, see
|
||||||
errors. To use it, see <xref linkend="sec-emacs-docbook-xml"/>.
|
<xref linkend="sec-emacs-docbook-xml"/>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
|
||||||
<link xlink:href="http://pandoc.org">Pandoc</link> can generate
|
|
||||||
DocBook XML from a multitude of formats, which makes a good starting
|
|
||||||
point.
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
<link xlink:href="http://pandoc.org">Pandoc</link> can generate DocBook XML
|
||||||
|
from a multitude of formats, which makes a good starting point.
|
||||||
<example xml:id="ex-pandoc-xml-conv">
|
<example xml:id="ex-pandoc-xml-conv">
|
||||||
<title>Pandoc invocation to convert GitHub-Flavoured MarkDown to DocBook 5 XML</title>
|
<title>Pandoc invocation to convert GitHub-Flavoured MarkDown to DocBook 5 XML</title>
|
||||||
<screen>pandoc -f markdown_github -t docbook5 docs.md -o my-section.md</screen>
|
<screen>pandoc -f markdown_github -t docbook5 docs.md -o my-section.md</screen>
|
||||||
</example>
|
</example>
|
||||||
|
Pandoc can also quickly convert a single <filename>section.xml</filename> to
|
||||||
|
HTML, which is helpful when drafting.
|
||||||
|
</para>
|
||||||
|
|
||||||
Pandoc can also quickly convert a single
|
<para>
|
||||||
<filename>section.xml</filename> to HTML, which is helpful when
|
Sometimes writing valid DocBook is simply too difficult. In this case,
|
||||||
drafting.
|
submit your documentation updates in a
|
||||||
</para>
|
<link
|
||||||
|
|
||||||
<para>
|
|
||||||
Sometimes writing valid DocBook is simply too difficult. In this
|
|
||||||
case, submit your documentation updates in a <link
|
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/issues/new">GitHub
|
xlink:href="https://github.com/NixOS/nixpkgs/issues/new">GitHub
|
||||||
Issue</link> and someone will handle the conversion to XML for you.
|
Issue</link> and someone will handle the conversion to XML for you.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
<section>
|
||||||
|
<title>Creating a Topic</title>
|
||||||
|
|
||||||
<section>
|
<para>
|
||||||
<title>Creating a Topic</title>
|
You can use an existing topic as a basis for the new topic or create a topic
|
||||||
|
from scratch.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
You can use an existing topic as a basis for the new topic or create a topic from scratch.
|
Keep the following guidelines in mind when you create and add a topic:
|
||||||
</para>
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Keep the following guidelines in mind when you create and add a topic:
|
The NixOS
|
||||||
|
<link xlink:href="http://www.docbook.org/tdg5/en/html/book.html"><tag>book</tag></link>
|
||||||
<itemizedlist>
|
element is in <filename>nixos/doc/manual/manual.xml</filename>. It
|
||||||
<listitem><para>
|
includes several
|
||||||
The NixOS <link xlink:href="http://www.docbook.org/tdg5/en/html/book.html"><tag>book</tag></link>
|
|
||||||
element is in <filename>nixos/doc/manual/manual.xml</filename>.
|
|
||||||
It includes several
|
|
||||||
<link xlink:href="http://www.docbook.org/tdg5/en/html/book.html"><tag>part</tag>s</link>
|
<link xlink:href="http://www.docbook.org/tdg5/en/html/book.html"><tag>part</tag>s</link>
|
||||||
which are in subdirectories.
|
which are in subdirectories.
|
||||||
</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem><para>
|
<listitem>
|
||||||
Store the topic file in the same directory as the <tag>part</tag>
|
<para>
|
||||||
to which it belongs. If your topic is about configuring a NixOS
|
Store the topic file in the same directory as the <tag>part</tag> to
|
||||||
module, then the XML file can be stored alongside the module
|
which it belongs. If your topic is about configuring a NixOS module, then
|
||||||
definition <filename>nix</filename> file.
|
the XML file can be stored alongside the module definition
|
||||||
</para></listitem>
|
<filename>nix</filename> file.
|
||||||
|
</para>
|
||||||
<listitem><para>
|
</listitem>
|
||||||
If you include multiple words in the file name, separate the words
|
<listitem>
|
||||||
with a dash. For example: <filename>ipv6-config.xml</filename>.
|
<para>
|
||||||
</para></listitem>
|
If you include multiple words in the file name, separate the words with a
|
||||||
|
dash. For example: <filename>ipv6-config.xml</filename>.
|
||||||
<listitem><para>
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
Make sure that the <tag>xml:id</tag> value is unique. You can use
|
Make sure that the <tag>xml:id</tag> value is unique. You can use
|
||||||
abbreviations if the ID is too long. For example:
|
abbreviations if the ID is too long. For example:
|
||||||
<varname>nixos-config</varname>.
|
<varname>nixos-config</varname>.
|
||||||
</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem><para>
|
<listitem>
|
||||||
|
<para>
|
||||||
Determine whether your topic is a chapter or a section. If you are
|
Determine whether your topic is a chapter or a section. If you are
|
||||||
unsure, open an existing topic file and check whether the main
|
unsure, open an existing topic file and check whether the main element is
|
||||||
element is chapter or section.
|
chapter or section.
|
||||||
</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</para>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<title>Adding a Topic to the Book</title>
|
||||||
|
|
||||||
</itemizedlist>
|
<para>
|
||||||
|
Open the parent XML file and add an <varname>xi:include</varname> element to
|
||||||
|
the list of chapters with the file name of the topic that you created. If
|
||||||
|
you created a <tag>section</tag>, you add the file to the <tag>chapter</tag>
|
||||||
|
file. If you created a <tag>chapter</tag>, you add the file to the
|
||||||
|
<tag>part</tag> file.
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
</section>
|
If the topic is about configuring a NixOS module, it can be automatically
|
||||||
|
included in the manual by using the <varname>meta.doc</varname> attribute.
|
||||||
<section>
|
See <xref
|
||||||
<title>Adding a Topic to the Book</title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
Open the parent XML file and add an <varname>xi:include</varname>
|
|
||||||
element to the list of chapters with the file name of the topic that
|
|
||||||
you created. If you created a <tag>section</tag>, you add the file to
|
|
||||||
the <tag>chapter</tag> file. If you created a <tag>chapter</tag>, you
|
|
||||||
add the file to the <tag>part</tag> file.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
If the topic is about configuring a NixOS module, it can be
|
|
||||||
automatically included in the manual by using the
|
|
||||||
<varname>meta.doc</varname> attribute. See <xref
|
|
||||||
linkend="sec-meta-attributes"/> for an explanation.
|
linkend="sec-meta-attributes"/> for an explanation.
|
||||||
</para>
|
</para>
|
||||||
|
</section>
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,52 +3,54 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-writing-modules">
|
xml:id="sec-writing-modules">
|
||||||
|
<title>Writing NixOS Modules</title>
|
||||||
<title>Writing NixOS Modules</title>
|
<para>
|
||||||
|
NixOS has a modular system for declarative configuration. This system
|
||||||
<para>NixOS has a modular system for declarative configuration. This
|
combines multiple <emphasis>modules</emphasis> to produce the full system
|
||||||
system combines multiple <emphasis>modules</emphasis> to produce the
|
configuration. One of the modules that constitute the configuration is
|
||||||
full system configuration. One of the modules that constitute the
|
<filename>/etc/nixos/configuration.nix</filename>. Most of the others live in
|
||||||
configuration is <filename>/etc/nixos/configuration.nix</filename>.
|
the
|
||||||
Most of the others live in the <link
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/tree/master/nixos/modules"><filename>nixos/modules</filename></link>
|
xlink:href="https://github.com/NixOS/nixpkgs/tree/master/nixos/modules"><filename>nixos/modules</filename></link>
|
||||||
subdirectory of the Nixpkgs tree.</para>
|
subdirectory of the Nixpkgs tree.
|
||||||
|
</para>
|
||||||
<para>Each NixOS module is a file that handles one logical aspect of
|
<para>
|
||||||
the configuration, such as a specific kind of hardware, a service, or
|
Each NixOS module is a file that handles one logical aspect of the
|
||||||
network settings. A module configuration does not have to handle
|
configuration, such as a specific kind of hardware, a service, or network
|
||||||
everything from scratch; it can use the functionality provided by
|
settings. A module configuration does not have to handle everything from
|
||||||
other modules for its implementation. Thus a module can
|
scratch; it can use the functionality provided by other modules for its
|
||||||
<emphasis>declare</emphasis> options that can be used by other
|
implementation. Thus a module can <emphasis>declare</emphasis> options that
|
||||||
modules, and conversely can <emphasis>define</emphasis> options
|
can be used by other modules, and conversely can <emphasis>define</emphasis>
|
||||||
provided by other modules in its own implementation. For example, the
|
options provided by other modules in its own implementation. For example, the
|
||||||
module <link
|
module
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/security/pam.nix"><filename>pam.nix</filename></link>
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/security/pam.nix"><filename>pam.nix</filename></link>
|
||||||
declares the option <option>security.pam.services</option> that allows
|
declares the option <option>security.pam.services</option> that allows other
|
||||||
other modules (e.g. <link
|
modules (e.g.
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/ssh/sshd.nix"><filename>sshd.nix</filename></link>)
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/ssh/sshd.nix"><filename>sshd.nix</filename></link>)
|
||||||
to define PAM services; and it defines the option
|
to define PAM services; and it defines the option
|
||||||
<option>environment.etc</option> (declared by <link
|
<option>environment.etc</option> (declared by
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/system/etc/etc.nix"><filename>etc.nix</filename></link>)
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/system/etc/etc.nix"><filename>etc.nix</filename></link>)
|
||||||
to cause files to be created in
|
to cause files to be created in <filename>/etc/pam.d</filename>.
|
||||||
<filename>/etc/pam.d</filename>.</para>
|
</para>
|
||||||
|
<para xml:id="para-module-syn">
|
||||||
<para xml:id="para-module-syn">In <xref
|
In <xref
|
||||||
linkend="sec-configuration-syntax"/>, we saw the following structure
|
linkend="sec-configuration-syntax"/>, we saw the following structure
|
||||||
of NixOS modules:
|
of NixOS modules:
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{ <replaceable>option definitions</replaceable>
|
{ <replaceable>option definitions</replaceable>
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
This is actually an <emphasis>abbreviated</emphasis> form of module that only
|
||||||
This is actually an <emphasis>abbreviated</emphasis> form of module
|
defines options, but does not declare any. The structure of full NixOS
|
||||||
that only defines options, but does not declare any. The structure of
|
modules is shown in <xref linkend='ex-module-syntax' />.
|
||||||
full NixOS modules is shown in <xref linkend='ex-module-syntax' />.</para>
|
</para>
|
||||||
|
<example xml:id='ex-module-syntax'>
|
||||||
<example xml:id='ex-module-syntax'><title>Structure of NixOS Modules</title>
|
<title>Structure of NixOS Modules</title>
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ config, pkgs, ... }: <co xml:id='module-syntax-1' />
|
{ config, pkgs, ... }: <co xml:id='module-syntax-1' />
|
||||||
|
|
||||||
@@ -65,56 +67,56 @@ full NixOS modules is shown in <xref linkend='ex-module-syntax' />.</para>
|
|||||||
<replaceable>option definitions</replaceable> <co xml:id='module-syntax-4' />
|
<replaceable>option definitions</replaceable> <co xml:id='module-syntax-4' />
|
||||||
};
|
};
|
||||||
}</programlisting>
|
}</programlisting>
|
||||||
</example>
|
</example>
|
||||||
|
<para>
|
||||||
<para>The meaning of each part is as follows.
|
The meaning of each part is as follows.
|
||||||
|
<calloutlist>
|
||||||
<calloutlist>
|
|
||||||
<callout arearefs='module-syntax-1'>
|
<callout arearefs='module-syntax-1'>
|
||||||
<para>This line makes the current Nix expression a function. The
|
<para>
|
||||||
variable <varname>pkgs</varname> contains Nixpkgs, while
|
This line makes the current Nix expression a function. The variable
|
||||||
<varname>config</varname> contains the full system configuration.
|
<varname>pkgs</varname> contains Nixpkgs, while <varname>config</varname>
|
||||||
This line can be omitted if there is no reference to
|
contains the full system configuration. This line can be omitted if there
|
||||||
<varname>pkgs</varname> and <varname>config</varname> inside the
|
is no reference to <varname>pkgs</varname> and <varname>config</varname>
|
||||||
module.</para>
|
inside the module.
|
||||||
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='module-syntax-2'>
|
<callout arearefs='module-syntax-2'>
|
||||||
<para>This list enumerates the paths to other NixOS modules that
|
<para>
|
||||||
should be included in the evaluation of the system configuration.
|
This list enumerates the paths to other NixOS modules that should be
|
||||||
A default set of modules is defined in the file
|
included in the evaluation of the system configuration. A default set of
|
||||||
<filename>modules/module-list.nix</filename>. These don't need to
|
modules is defined in the file
|
||||||
be added in the import list.</para>
|
<filename>modules/module-list.nix</filename>. These don't need to be added
|
||||||
|
in the import list.
|
||||||
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='module-syntax-3'>
|
<callout arearefs='module-syntax-3'>
|
||||||
<para>The attribute <varname>options</varname> is a nested set of
|
<para>
|
||||||
<emphasis>option declarations</emphasis> (described below).</para>
|
The attribute <varname>options</varname> is a nested set of
|
||||||
|
<emphasis>option declarations</emphasis> (described below).
|
||||||
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
|
|
||||||
<callout arearefs='module-syntax-4'>
|
<callout arearefs='module-syntax-4'>
|
||||||
<para>The attribute <varname>config</varname> is a nested set of
|
<para>
|
||||||
<emphasis>option definitions</emphasis> (also described
|
The attribute <varname>config</varname> is a nested set of
|
||||||
below).</para>
|
<emphasis>option definitions</emphasis> (also described below).
|
||||||
|
</para>
|
||||||
</callout>
|
</callout>
|
||||||
</calloutlist>
|
</calloutlist>
|
||||||
|
</para>
|
||||||
</para>
|
<para>
|
||||||
|
<xref linkend='locate-example' /> shows a module that handles the regular
|
||||||
<para><xref linkend='locate-example' /> shows a module that handles
|
update of the “locate” database, an index of all files in the file
|
||||||
the regular update of the “locate” database, an index of all files in
|
system. This module declares two options that can be defined by other modules
|
||||||
the file system. This module declares two options that can be defined
|
(typically the user’s <filename>configuration.nix</filename>):
|
||||||
by other modules (typically the user’s
|
<option>services.locate.enable</option> (whether the database should be
|
||||||
<filename>configuration.nix</filename>):
|
updated) and <option>services.locate.interval</option> (when the update
|
||||||
<option>services.locate.enable</option> (whether the database should
|
should be done). It implements its functionality by defining two options
|
||||||
be updated) and <option>services.locate.interval</option> (when the
|
declared by other modules: <option>systemd.services</option> (the set of all
|
||||||
update should be done). It implements its functionality by defining
|
systemd services) and <option>systemd.timers</option> (the list of commands
|
||||||
two options declared by other modules:
|
to be executed periodically by <command>systemd</command>).
|
||||||
<option>systemd.services</option> (the set of all systemd services)
|
</para>
|
||||||
and <option>systemd.timers</option> (the list of commands to be
|
<example xml:id='locate-example'>
|
||||||
executed periodically by <command>systemd</command>).</para>
|
<title>NixOS Module for the “locate” Service</title>
|
||||||
|
|
||||||
<example xml:id='locate-example'><title>NixOS Module for the “locate” Service</title>
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
@@ -173,14 +175,12 @@ in {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</example>
|
</example>
|
||||||
|
<xi:include href="option-declarations.xml" />
|
||||||
<xi:include href="option-declarations.xml" />
|
<xi:include href="option-types.xml" />
|
||||||
<xi:include href="option-types.xml" />
|
<xi:include href="option-def.xml" />
|
||||||
<xi:include href="option-def.xml" />
|
<xi:include href="assertions.xml" />
|
||||||
<xi:include href="assertions.xml" />
|
<xi:include href="meta-attributes.xml" />
|
||||||
<xi:include href="meta-attributes.xml" />
|
<xi:include href="importing-modules.xml" />
|
||||||
<xi:include href="importing-modules.xml" />
|
<xi:include href="replace-modules.xml" />
|
||||||
<xi:include href="replace-modules.xml" />
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,11 +3,10 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-writing-nixos-tests">
|
xml:id="sec-writing-nixos-tests">
|
||||||
|
<title>Writing Tests</title>
|
||||||
|
|
||||||
<title>Writing Tests</title>
|
<para>
|
||||||
|
A NixOS test is a Nix expression that has the following structure:
|
||||||
<para>A NixOS test is a Nix expression that has the following structure:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
import ./make-test.nix {
|
import ./make-test.nix {
|
||||||
|
|
||||||
@@ -32,277 +31,364 @@ import ./make-test.nix {
|
|||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
The attribute <literal>testScript</literal> is a bit of Perl code that
|
||||||
The attribute <literal>testScript</literal> is a bit of Perl code that
|
executes the test (described below). During the test, it will start one or
|
||||||
executes the test (described below). During the test, it will start
|
more virtual machines, the configuration of which is described by the
|
||||||
one or more virtual machines, the configuration of which is described
|
attribute <literal>machine</literal> (if you need only one machine in your
|
||||||
by the attribute <literal>machine</literal> (if you need only one
|
test) or by the attribute <literal>nodes</literal> (if you need multiple
|
||||||
machine in your test) or by the attribute <literal>nodes</literal> (if
|
machines). For instance,
|
||||||
you need multiple machines). For instance, <filename
|
<filename
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/tests/login.nix">login.nix</filename>
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/tests/login.nix">login.nix</filename>
|
||||||
only needs a single machine to test whether users can log in on the
|
only needs a single machine to test whether users can log in on the virtual
|
||||||
virtual console, whether device ownership is correctly maintained when
|
console, whether device ownership is correctly maintained when switching
|
||||||
switching between consoles, and so on. On the other hand, <filename
|
between consoles, and so on. On the other hand,
|
||||||
|
<filename
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/tests/nfs.nix">nfs.nix</filename>,
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/tests/nfs.nix">nfs.nix</filename>,
|
||||||
which tests NFS client and server functionality in the Linux kernel
|
which tests NFS client and server functionality in the Linux kernel
|
||||||
(including whether locks are maintained across server crashes),
|
(including whether locks are maintained across server crashes), requires
|
||||||
requires three machines: a server and two clients.</para>
|
three machines: a server and two clients.
|
||||||
|
</para>
|
||||||
<para>There are a few special NixOS configuration options for test
|
|
||||||
VMs:
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
There are a few special NixOS configuration options for test VMs:
|
||||||
<!-- FIXME: would be nice to generate this automatically. -->
|
<!-- FIXME: would be nice to generate this automatically. -->
|
||||||
|
<variablelist>
|
||||||
<variablelist>
|
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><option>virtualisation.memorySize</option></term>
|
<term><option>virtualisation.memorySize</option>
|
||||||
<listitem><para>The memory of the VM in
|
</term>
|
||||||
megabytes.</para></listitem>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The memory of the VM in megabytes.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><option>virtualisation.vlans</option></term>
|
<term><option>virtualisation.vlans</option>
|
||||||
<listitem><para>The virtual networks to which the VM is
|
</term>
|
||||||
connected. See <filename
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The virtual networks to which the VM is connected. See
|
||||||
|
<filename
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/tests/nat.nix">nat.nix</filename>
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/tests/nat.nix">nat.nix</filename>
|
||||||
for an example.</para></listitem>
|
for an example.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><option>virtualisation.writableStore</option></term>
|
<term><option>virtualisation.writableStore</option>
|
||||||
<listitem><para>By default, the Nix store in the VM is not
|
</term>
|
||||||
writable. If you enable this option, a writable union file system
|
<listitem>
|
||||||
is mounted on top of the Nix store to make it appear
|
<para>
|
||||||
writable. This is necessary for tests that run Nix operations that
|
By default, the Nix store in the VM is not writable. If you enable this
|
||||||
modify the store.</para></listitem>
|
option, a writable union file system is mounted on top of the Nix store
|
||||||
|
to make it appear writable. This is necessary for tests that run Nix
|
||||||
|
operations that modify the store.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
</variablelist>
|
||||||
|
For more options, see the module
|
||||||
|
<filename
|
||||||
|
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/virtualisation/qemu-vm.nix">qemu-vm.nix</filename>.
|
||||||
|
</para>
|
||||||
|
|
||||||
</variablelist>
|
<para>
|
||||||
|
The test script is a sequence of Perl statements that perform various
|
||||||
For more options, see the module <filename
|
actions, such as starting VMs, executing commands in the VMs, and so on. Each
|
||||||
xlink:href="https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/virtualisation/qemu-vm.nix">qemu-vm.nix</filename>.</para>
|
virtual machine is represented as an object stored in the variable
|
||||||
|
<literal>$<replaceable>name</replaceable></literal>, where
|
||||||
<para>The test script is a sequence of Perl statements that perform
|
<replaceable>name</replaceable> is the identifier of the machine (which is
|
||||||
various actions, such as starting VMs, executing commands in the VMs,
|
just <literal>machine</literal> if you didn’t specify multiple machines
|
||||||
and so on. Each virtual machine is represented as an object stored in
|
using the <literal>nodes</literal> attribute). For instance, the following
|
||||||
the variable <literal>$<replaceable>name</replaceable></literal>,
|
starts the machine, waits until it has finished booting, then executes a
|
||||||
where <replaceable>name</replaceable> is the identifier of the machine
|
command and checks that the output is more-or-less correct:
|
||||||
(which is just <literal>machine</literal> if you didn’t specify
|
|
||||||
multiple machines using the <literal>nodes</literal> attribute). For
|
|
||||||
instance, the following starts the machine, waits until it has
|
|
||||||
finished booting, then executes a command and checks that the output
|
|
||||||
is more-or-less correct:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
$machine->start;
|
$machine->start;
|
||||||
$machine->waitForUnit("default.target");
|
$machine->waitForUnit("default.target");
|
||||||
$machine->succeed("uname") =~ /Linux/;
|
$machine->succeed("uname") =~ /Linux/;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
The first line is actually unnecessary; machines are implicitly started when
|
||||||
The first line is actually unnecessary; machines are implicitly
|
you first execute an action on them (such as <literal>waitForUnit</literal>
|
||||||
started when you first execute an action on them (such as
|
or <literal>succeed</literal>). If you have multiple machines, you can speed
|
||||||
<literal>waitForUnit</literal> or <literal>succeed</literal>). If you
|
up the test by starting them in parallel:
|
||||||
have multiple machines, you can speed up the test by starting them in
|
|
||||||
parallel:
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
startAll;
|
startAll;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
</para>
|
||||||
|
|
||||||
</para>
|
<para>
|
||||||
|
The following methods are available on machine objects:
|
||||||
<para>The following methods are available on machine objects:
|
<variablelist>
|
||||||
|
|
||||||
<variablelist>
|
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><methodname>start</methodname></term>
|
<term><methodname>start</methodname>
|
||||||
<listitem><para>Start the virtual machine. This method is
|
</term>
|
||||||
asynchronous — it does not wait for the machine to finish
|
<listitem>
|
||||||
booting.</para></listitem>
|
<para>
|
||||||
</varlistentry>
|
Start the virtual machine. This method is asynchronous — it does not
|
||||||
|
wait for the machine to finish booting.
|
||||||
<varlistentry>
|
</para>
|
||||||
<term><methodname>shutdown</methodname></term>
|
|
||||||
<listitem><para>Shut down the machine, waiting for the VM to
|
|
||||||
exit.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>crash</methodname></term>
|
|
||||||
<listitem><para>Simulate a sudden power failure, by telling the VM
|
|
||||||
to exit immediately.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>block</methodname></term>
|
|
||||||
<listitem><para>Simulate unplugging the Ethernet cable that
|
|
||||||
connects the machine to the other machines.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>unblock</methodname></term>
|
|
||||||
<listitem><para>Undo the effect of
|
|
||||||
<methodname>block</methodname>.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>screenshot</methodname></term>
|
|
||||||
<listitem><para>Take a picture of the display of the virtual
|
|
||||||
machine, in PNG format. The screenshot is linked from the HTML
|
|
||||||
log.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>getScreenText</methodname></term>
|
|
||||||
<listitem><para>Return a textual representation of what is currently
|
|
||||||
visible on the machine's screen using optical character
|
|
||||||
recognition.</para>
|
|
||||||
<note><para>This requires passing <option>enableOCR</option> to the test
|
|
||||||
attribute set.</para></note></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>sendMonitorCommand</methodname></term>
|
|
||||||
<listitem><para>Send a command to the QEMU monitor. This is rarely
|
|
||||||
used, but allows doing stuff such as attaching virtual USB disks
|
|
||||||
to a running machine.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>sendKeys</methodname></term>
|
|
||||||
<listitem><para>Simulate pressing keys on the virtual keyboard,
|
|
||||||
e.g., <literal>sendKeys("ctrl-alt-delete")</literal>.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>sendChars</methodname></term>
|
|
||||||
<listitem><para>Simulate typing a sequence of characters on the
|
|
||||||
virtual keyboard, e.g., <literal>sendKeys("foobar\n")</literal>
|
|
||||||
will type the string <literal>foobar</literal> followed by the
|
|
||||||
Enter key.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>execute</methodname></term>
|
|
||||||
<listitem><para>Execute a shell command, returning a list
|
|
||||||
<literal>(<replaceable>status</replaceable>,
|
|
||||||
<replaceable>stdout</replaceable>)</literal>.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>succeed</methodname></term>
|
|
||||||
<listitem><para>Execute a shell command, raising an exception if
|
|
||||||
the exit status is not zero, otherwise returning the standard
|
|
||||||
output.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>fail</methodname></term>
|
|
||||||
<listitem><para>Like <methodname>succeed</methodname>, but raising
|
|
||||||
an exception if the command returns a zero status.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>waitUntilSucceeds</methodname></term>
|
|
||||||
<listitem><para>Repeat a shell command with 1-second intervals
|
|
||||||
until it succeeds.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>waitUntilFails</methodname></term>
|
|
||||||
<listitem><para>Repeat a shell command with 1-second intervals
|
|
||||||
until it fails.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>waitForUnit</methodname></term>
|
|
||||||
<listitem><para>Wait until the specified systemd unit has reached
|
|
||||||
the “active” state.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>waitForFile</methodname></term>
|
|
||||||
<listitem><para>Wait until the specified file
|
|
||||||
exists.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>waitForOpenPort</methodname></term>
|
|
||||||
<listitem><para>Wait until a process is listening on the given TCP
|
|
||||||
port (on <literal>localhost</literal>, at least).</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>waitForClosedPort</methodname></term>
|
|
||||||
<listitem><para>Wait until nobody is listening on the given TCP
|
|
||||||
port.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>waitForX</methodname></term>
|
|
||||||
<listitem><para>Wait until the X11 server is accepting
|
|
||||||
connections.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>waitForText</methodname></term>
|
|
||||||
<listitem><para>Wait until the supplied regular expressions matches
|
|
||||||
the textual contents of the screen by using optical character recognition
|
|
||||||
(see <methodname>getScreenText</methodname>).</para>
|
|
||||||
<note><para>This requires passing <option>enableOCR</option> to the test
|
|
||||||
attribute set.</para></note></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>waitForWindow</methodname></term>
|
|
||||||
<listitem><para>Wait until an X11 window has appeared whose name
|
|
||||||
matches the given regular expression, e.g.,
|
|
||||||
<literal>waitForWindow(qr/Terminal/)</literal>.</para></listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term><methodname>copyFileFromHost</methodname></term>
|
|
||||||
<listitem><para>Copies a file from host to machine, e.g.,
|
|
||||||
<literal>copyFileFromHost("myfile", "/etc/my/important/file")</literal>.</para>
|
|
||||||
<para>The first argument is the file on the host. The file needs to be
|
|
||||||
accessible while building the nix derivation. The second argument is
|
|
||||||
the location of the file on the machine.</para>
|
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><methodname>systemctl</methodname></term>
|
<term><methodname>shutdown</methodname>
|
||||||
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Runs <literal>systemctl</literal> commands with optional support for
|
|
||||||
<literal>systemctl --user</literal></para>
|
|
||||||
<para>
|
<para>
|
||||||
<programlisting>
|
Shut down the machine, waiting for the VM to exit.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>crash</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Simulate a sudden power failure, by telling the VM to exit immediately.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>block</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Simulate unplugging the Ethernet cable that connects the machine to the
|
||||||
|
other machines.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>unblock</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Undo the effect of <methodname>block</methodname>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>screenshot</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Take a picture of the display of the virtual machine, in PNG format. The
|
||||||
|
screenshot is linked from the HTML log.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>getScreenText</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Return a textual representation of what is currently visible on the
|
||||||
|
machine's screen using optical character recognition.
|
||||||
|
</para>
|
||||||
|
<note>
|
||||||
|
<para>
|
||||||
|
This requires passing <option>enableOCR</option> to the test attribute
|
||||||
|
set.
|
||||||
|
</para>
|
||||||
|
</note>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>sendMonitorCommand</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Send a command to the QEMU monitor. This is rarely used, but allows doing
|
||||||
|
stuff such as attaching virtual USB disks to a running machine.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>sendKeys</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Simulate pressing keys on the virtual keyboard, e.g.,
|
||||||
|
<literal>sendKeys("ctrl-alt-delete")</literal>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>sendChars</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Simulate typing a sequence of characters on the virtual keyboard, e.g.,
|
||||||
|
<literal>sendKeys("foobar\n")</literal> will type the string
|
||||||
|
<literal>foobar</literal> followed by the Enter key.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>execute</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Execute a shell command, returning a list
|
||||||
|
<literal>(<replaceable>status</replaceable>,
|
||||||
|
<replaceable>stdout</replaceable>)</literal>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>succeed</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Execute a shell command, raising an exception if the exit status is not
|
||||||
|
zero, otherwise returning the standard output.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>fail</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Like <methodname>succeed</methodname>, but raising an exception if the
|
||||||
|
command returns a zero status.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>waitUntilSucceeds</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Repeat a shell command with 1-second intervals until it succeeds.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>waitUntilFails</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Repeat a shell command with 1-second intervals until it fails.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>waitForUnit</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Wait until the specified systemd unit has reached the “active” state.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>waitForFile</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Wait until the specified file exists.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>waitForOpenPort</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Wait until a process is listening on the given TCP port (on
|
||||||
|
<literal>localhost</literal>, at least).
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>waitForClosedPort</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Wait until nobody is listening on the given TCP port.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>waitForX</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Wait until the X11 server is accepting connections.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>waitForText</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Wait until the supplied regular expressions matches the textual contents
|
||||||
|
of the screen by using optical character recognition (see
|
||||||
|
<methodname>getScreenText</methodname>).
|
||||||
|
</para>
|
||||||
|
<note>
|
||||||
|
<para>
|
||||||
|
This requires passing <option>enableOCR</option> to the test attribute
|
||||||
|
set.
|
||||||
|
</para>
|
||||||
|
</note>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>waitForWindow</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Wait until an X11 window has appeared whose name matches the given
|
||||||
|
regular expression, e.g., <literal>waitForWindow(qr/Terminal/)</literal>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>copyFileFromHost</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Copies a file from host to machine, e.g.,
|
||||||
|
<literal>copyFileFromHost("myfile", "/etc/my/important/file")</literal>.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
The first argument is the file on the host. The file needs to be
|
||||||
|
accessible while building the nix derivation. The second argument is the
|
||||||
|
location of the file on the machine.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><methodname>systemctl</methodname>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Runs <literal>systemctl</literal> commands with optional support for
|
||||||
|
<literal>systemctl --user</literal>
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
<programlisting>
|
||||||
$machine->systemctl("list-jobs --no-pager"); // runs `systemctl list-jobs --no-pager`
|
$machine->systemctl("list-jobs --no-pager"); // runs `systemctl list-jobs --no-pager`
|
||||||
$machine->systemctl("list-jobs --no-pager", "any-user"); // spawns a shell for `any-user` and runs `systemctl --user list-jobs --no-pager`
|
$machine->systemctl("list-jobs --no-pager", "any-user"); // spawns a shell for `any-user` and runs `systemctl --user list-jobs --no-pager`
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
</variablelist>
|
||||||
|
</para>
|
||||||
|
|
||||||
</variablelist>
|
<para>
|
||||||
|
To test user units declared by <literal>systemd.user.services</literal> the
|
||||||
</para>
|
optional <literal>$user</literal> argument can be used:
|
||||||
|
<programlisting>
|
||||||
<para>
|
|
||||||
To test user units declared by <literal>systemd.user.services</literal> the optional <literal>$user</literal>
|
|
||||||
argument can be used:
|
|
||||||
|
|
||||||
<programlisting>
|
|
||||||
$machine->start;
|
$machine->start;
|
||||||
$machine->waitForX;
|
$machine->waitForX;
|
||||||
$machine->waitForUnit("xautolock.service", "x-session-user");
|
$machine->waitForUnit("xautolock.service", "x-session-user");
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
This applies to <literal>systemctl</literal>, <literal>getUnitInfo</literal>,
|
This applies to <literal>systemctl</literal>, <literal>getUnitInfo</literal>,
|
||||||
<literal>waitForUnit</literal>, <literal>startJob</literal>
|
<literal>waitForUnit</literal>, <literal>startJob</literal> and
|
||||||
and <literal>stopJob</literal>.
|
<literal>stopJob</literal>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -2,101 +2,84 @@
|
|||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-changing-config">
|
xml:id="sec-changing-config">
|
||||||
|
<title>Changing the Configuration</title>
|
||||||
<title>Changing the Configuration</title>
|
<para>
|
||||||
|
The file <filename>/etc/nixos/configuration.nix</filename> contains the
|
||||||
<para>The file <filename>/etc/nixos/configuration.nix</filename>
|
current configuration of your machine. Whenever you’ve
|
||||||
contains the current configuration of your machine. Whenever you’ve
|
<link linkend="ch-configuration">changed something</link> in that file, you
|
||||||
<link linkend="ch-configuration">changed something</link> in that file, you should do
|
should do
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-rebuild switch</screen>
|
# nixos-rebuild switch</screen>
|
||||||
|
to build the new configuration, make it the default configuration for
|
||||||
to build the new configuration, make it the default configuration for
|
booting, and try to realise the configuration in the running system (e.g., by
|
||||||
booting, and try to realise the configuration in the running system
|
restarting system services).
|
||||||
(e.g., by restarting system services).</para>
|
</para>
|
||||||
|
<warning>
|
||||||
<warning><para>These commands must be executed as root, so you should
|
<para>
|
||||||
either run them from a root shell or by prefixing them with
|
These commands must be executed as root, so you should either run them from
|
||||||
<literal>sudo -i</literal>.</para></warning>
|
a root shell or by prefixing them with <literal>sudo -i</literal>.
|
||||||
|
</para>
|
||||||
<para>You can also do
|
</warning>
|
||||||
|
<para>
|
||||||
|
You can also do
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-rebuild test</screen>
|
# nixos-rebuild test</screen>
|
||||||
|
to build the configuration and switch the running system to it, but without
|
||||||
to build the configuration and switch the running system to it, but
|
making it the boot default. So if (say) the configuration locks up your
|
||||||
without making it the boot default. So if (say) the configuration
|
machine, you can just reboot to get back to a working configuration.
|
||||||
locks up your machine, you can just reboot to get back to a working
|
</para>
|
||||||
configuration.</para>
|
<para>
|
||||||
|
There is also
|
||||||
<para>There is also
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-rebuild boot</screen>
|
# nixos-rebuild boot</screen>
|
||||||
|
to build the configuration and make it the boot default, but not switch to it
|
||||||
to build the configuration and make it the boot default, but not
|
now (so it will only take effect after the next reboot).
|
||||||
switch to it now (so it will only take effect after the next
|
</para>
|
||||||
reboot).</para>
|
<para>
|
||||||
|
You can make your configuration show up in a different submenu of the GRUB 2
|
||||||
<para>You can make your configuration show up in a different submenu
|
boot screen by giving it a different <emphasis>profile name</emphasis>, e.g.
|
||||||
of the GRUB 2 boot screen by giving it a different <emphasis>profile
|
|
||||||
name</emphasis>, e.g.
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
# nixos-rebuild switch -p test </screen>
|
# nixos-rebuild switch -p test </screen>
|
||||||
|
which causes the new configuration (and previous ones created using
|
||||||
which causes the new configuration (and previous ones created using
|
<literal>-p test</literal>) to show up in the GRUB submenu “NixOS - Profile
|
||||||
<literal>-p test</literal>) to show up in the GRUB submenu “NixOS -
|
'test'”. This can be useful to separate test configurations from
|
||||||
Profile 'test'”. This can be useful to separate test configurations
|
“stable” configurations.
|
||||||
from “stable” configurations.</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>Finally, you can do
|
Finally, you can do
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nixos-rebuild build</screen>
|
$ nixos-rebuild build</screen>
|
||||||
|
to build the configuration but nothing more. This is useful to see whether
|
||||||
to build the configuration but nothing more. This is useful to see
|
everything compiles cleanly.
|
||||||
whether everything compiles cleanly.</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>If you have a machine that supports hardware virtualisation, you
|
If you have a machine that supports hardware virtualisation, you can also
|
||||||
can also test the new configuration in a sandbox by building and
|
test the new configuration in a sandbox by building and running a QEMU
|
||||||
running a QEMU <emphasis>virtual machine</emphasis> that contains the
|
<emphasis>virtual machine</emphasis> that contains the desired configuration.
|
||||||
desired configuration. Just do
|
Just do
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ nixos-rebuild build-vm
|
$ nixos-rebuild build-vm
|
||||||
$ ./result/bin/run-*-vm
|
$ ./result/bin/run-*-vm
|
||||||
</screen>
|
</screen>
|
||||||
|
The VM does not have any data from your host system, so your existing user
|
||||||
The VM does not have any data from your host system, so your existing
|
accounts and home directories will not be available unless you have set
|
||||||
user accounts and home directories will not be available unless you
|
<literal>mutableUsers = false</literal>. Another way is to temporarily add
|
||||||
have set <literal>mutableUsers = false</literal>. Another way is to
|
the following to your configuration:
|
||||||
temporarily add the following to your configuration:
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
<link linkend="opt-users.users._name__.initialHashedPassword">users.extraUsers.your-user.initialHashedPassword</link> = "test";
|
<link linkend="opt-users.users._name__.initialHashedPassword">users.extraUsers.your-user.initialHashedPassword</link> = "test";
|
||||||
</screen>
|
</screen>
|
||||||
|
<emphasis>Important:</emphasis> delete the $hostname.qcow2 file if you have
|
||||||
<emphasis>Important:</emphasis> delete the $hostname.qcow2 file if you
|
started the virtual machine at least once without the right users, otherwise
|
||||||
have started the virtual machine at least once without the right
|
the changes will not get picked up. You can forward ports on the host to the
|
||||||
users, otherwise the changes will not get picked up.
|
guest. For instance, the following will forward host port 2222 to guest port
|
||||||
|
22 (SSH):
|
||||||
You can forward ports on the host to the guest. For
|
|
||||||
instance, the following will forward host port 2222 to guest port 22
|
|
||||||
(SSH):
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ QEMU_NET_OPTS="hostfwd=tcp::2222-:22" ./result/bin/run-*-vm
|
$ QEMU_NET_OPTS="hostfwd=tcp::2222-:22" ./result/bin/run-*-vm
|
||||||
</screen>
|
</screen>
|
||||||
|
allowing you to log in via SSH (assuming you have set the appropriate
|
||||||
allowing you to log in via SSH (assuming you have set the appropriate
|
passwords or SSH authorized keys):
|
||||||
passwords or SSH authorized keys):
|
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
$ ssh -p 2222 localhost
|
$ ssh -p 2222 localhost
|
||||||
</screen>
|
</screen>
|
||||||
|
</para>
|
||||||
</para>
|
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -3,19 +3,15 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="ch-installation">
|
xml:id="ch-installation">
|
||||||
|
<title>Installation</title>
|
||||||
<title>Installation</title>
|
<partintro>
|
||||||
|
<para>
|
||||||
<partintro>
|
This section describes how to obtain, install, and configure NixOS for
|
||||||
|
first-time use.
|
||||||
<para>This section describes how to obtain, install, and configure
|
</para>
|
||||||
NixOS for first-time use.</para>
|
</partintro>
|
||||||
|
<xi:include href="obtaining.xml" />
|
||||||
</partintro>
|
<xi:include href="installing.xml" />
|
||||||
|
<xi:include href="changing-config.xml" />
|
||||||
<xi:include href="obtaining.xml" />
|
<xi:include href="upgrading.xml" />
|
||||||
<xi:include href="installing.xml" />
|
|
||||||
<xi:include href="changing-config.xml" />
|
|
||||||
<xi:include href="upgrading.xml" />
|
|
||||||
|
|
||||||
</part>
|
</part>
|
||||||
|
|||||||
@@ -5,284 +5,325 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-installing-from-other-distro">
|
xml:id="sec-installing-from-other-distro">
|
||||||
|
|
||||||
<title>Installing from another Linux distribution</title>
|
<title>Installing from another Linux distribution</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Because Nix (the package manager) & Nixpkgs (the Nix packages
|
Because Nix (the package manager) & Nixpkgs (the Nix packages collection)
|
||||||
collection) can both be installed on any (most?) Linux distributions,
|
can both be installed on any (most?) Linux distributions, they can be used to
|
||||||
they can be used to install NixOS in various creative ways. You can,
|
install NixOS in various creative ways. You can, for instance:
|
||||||
for instance:
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<orderedlist>
|
<orderedlist>
|
||||||
<listitem><para>Install NixOS on another partition, from your existing
|
<listitem>
|
||||||
Linux distribution (without the use of a USB or optical
|
<para>
|
||||||
device!)</para></listitem>
|
Install NixOS on another partition, from your existing Linux distribution
|
||||||
|
(without the use of a USB or optical device!)
|
||||||
<listitem><para>Install NixOS on the same partition (in place!), from
|
</para>
|
||||||
your existing non-NixOS Linux distribution using
|
</listitem>
|
||||||
<literal>NIXOS_LUSTRATE</literal>.</para></listitem>
|
<listitem>
|
||||||
|
<para>
|
||||||
<listitem><para>Install NixOS on your hard drive from the Live CD of
|
Install NixOS on the same partition (in place!), from your existing
|
||||||
any Linux distribution.</para></listitem>
|
non-NixOS Linux distribution using <literal>NIXOS_LUSTRATE</literal>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Install NixOS on your hard drive from the Live CD of any Linux
|
||||||
|
distribution.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</orderedlist>
|
</orderedlist>
|
||||||
|
|
||||||
<para>The first steps to all these are the same:</para>
|
<para>
|
||||||
|
The first steps to all these are the same:
|
||||||
|
</para>
|
||||||
|
|
||||||
<orderedlist>
|
<orderedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Install the Nix package manager:</para>
|
<para>
|
||||||
|
Install the Nix package manager:
|
||||||
<para>Short version:</para>
|
</para>
|
||||||
|
<para>
|
||||||
<screen>
|
Short version:
|
||||||
|
</para>
|
||||||
|
<screen>
|
||||||
$ bash <(curl https://nixos.org/nix/install)
|
$ bash <(curl https://nixos.org/nix/install)
|
||||||
$ . $HOME/.nix-profile/etc/profile.d/nix.sh # …or open a fresh shell</screen>
|
$ . $HOME/.nix-profile/etc/profile.d/nix.sh # …or open a fresh shell</screen>
|
||||||
|
<para>
|
||||||
<para>More details in the <link
|
More details in the
|
||||||
|
<link
|
||||||
xlink:href="https://nixos.org/nix/manual/#chap-quick-start">
|
xlink:href="https://nixos.org/nix/manual/#chap-quick-start">
|
||||||
Nix manual</link></para>
|
Nix manual</link>
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Switch to the NixOS channel:</para>
|
<para>
|
||||||
|
Switch to the NixOS channel:
|
||||||
<para>If you've just installed Nix on a non-NixOS distribution, you
|
</para>
|
||||||
will be on the <literal>nixpkgs</literal> channel by
|
<para>
|
||||||
default.</para>
|
If you've just installed Nix on a non-NixOS distribution, you will be on
|
||||||
|
the <literal>nixpkgs</literal> channel by default.
|
||||||
<screen>
|
</para>
|
||||||
|
<screen>
|
||||||
$ nix-channel --list
|
$ nix-channel --list
|
||||||
nixpkgs https://nixos.org/channels/nixpkgs-unstable</screen>
|
nixpkgs https://nixos.org/channels/nixpkgs-unstable</screen>
|
||||||
|
<para>
|
||||||
<para>As that channel gets released without running the NixOS
|
As that channel gets released without running the NixOS tests, it will be
|
||||||
tests, it will be safer to use the <literal>nixos-*</literal>
|
safer to use the <literal>nixos-*</literal> channels instead:
|
||||||
channels instead:</para>
|
</para>
|
||||||
|
<screen>
|
||||||
<screen>
|
|
||||||
$ nix-channel --add https://nixos.org/channels/nixos-<replaceable>version</replaceable> nixpkgs</screen>
|
$ nix-channel --add https://nixos.org/channels/nixos-<replaceable>version</replaceable> nixpkgs</screen>
|
||||||
|
<para>
|
||||||
<para>You may want to throw in a <literal>nix-channel
|
You may want to throw in a <literal>nix-channel --update</literal> for good
|
||||||
--update</literal> for good measure.</para>
|
measure.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Install the NixOS installation tools:</para>
|
<para>
|
||||||
|
Install the NixOS installation tools:
|
||||||
<para>You'll need <literal>nixos-generate-config</literal> and
|
</para>
|
||||||
<literal>nixos-install</literal> and we'll throw in some man
|
<para>
|
||||||
pages and <literal>nixos-enter</literal> just in case you want
|
You'll need <literal>nixos-generate-config</literal> and
|
||||||
to chroot into your NixOS partition. They are installed by
|
<literal>nixos-install</literal> and we'll throw in some man pages and
|
||||||
default on NixOS, but you don't have NixOS yet..</para>
|
<literal>nixos-enter</literal> just in case you want to chroot into your
|
||||||
|
NixOS partition. They are installed by default on NixOS, but you don't have
|
||||||
<screen>$ nix-env -iE "_: with import <nixpkgs/nixos> { configuration = {}; }; with config.system.build; [ nixos-generate-config nixos-install nixos-enter manual.manpages ]"</screen>
|
NixOS yet..
|
||||||
|
</para>
|
||||||
|
<screen>$ nix-env -iE "_: with import <nixpkgs/nixos> { configuration = {}; }; with config.system.build; [ nixos-generate-config nixos-install nixos-enter manual.manpages ]"</screen>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<note><para>The following 5 steps are only for installing NixOS to
|
<note>
|
||||||
another partition. For installing NixOS in place using
|
<para>
|
||||||
<literal>NIXOS_LUSTRATE</literal>, skip ahead.</para></note>
|
The following 5 steps are only for installing NixOS to another partition.
|
||||||
|
For installing NixOS in place using <literal>NIXOS_LUSTRATE</literal>,
|
||||||
<para>Prepare your target partition:</para>
|
skip ahead.
|
||||||
|
</para>
|
||||||
<para>At this point it is time to prepare your target partition.
|
</note>
|
||||||
Please refer to the partitioning, file-system creation, and
|
<para>
|
||||||
mounting steps of <xref linkend="sec-installation" /></para>
|
Prepare your target partition:
|
||||||
|
</para>
|
||||||
<para>If you're about to install NixOS in place using
|
<para>
|
||||||
<literal>NIXOS_LUSTRATE</literal> there is nothing to do for
|
At this point it is time to prepare your target partition. Please refer to
|
||||||
this step.</para>
|
the partitioning, file-system creation, and mounting steps of
|
||||||
|
<xref linkend="sec-installation" />
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
If you're about to install NixOS in place using
|
||||||
|
<literal>NIXOS_LUSTRATE</literal> there is nothing to do for this step.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Generate your NixOS configuration:</para>
|
<para>
|
||||||
|
Generate your NixOS configuration:
|
||||||
<screen>$ sudo `which nixos-generate-config` --root /mnt</screen>
|
</para>
|
||||||
|
<screen>$ sudo `which nixos-generate-config` --root /mnt</screen>
|
||||||
<para>You'll probably want to edit the configuration files. Refer
|
<para>
|
||||||
to the <literal>nixos-generate-config</literal> step in <xref
|
You'll probably want to edit the configuration files. Refer to the
|
||||||
linkend="sec-installation" /> for more information.</para>
|
<literal>nixos-generate-config</literal> step in
|
||||||
|
<xref
|
||||||
<para>Consider setting up the NixOS bootloader to give you the
|
linkend="sec-installation" /> for more
|
||||||
ability to boot on your existing Linux partition. For instance,
|
information.
|
||||||
if you're using GRUB and your existing distribution is running
|
</para>
|
||||||
Ubuntu, you may want to add something like this to your
|
<para>
|
||||||
<literal>configuration.nix</literal>:</para>
|
Consider setting up the NixOS bootloader to give you the ability to boot on
|
||||||
|
your existing Linux partition. For instance, if you're using GRUB and your
|
||||||
<programlisting>
|
existing distribution is running Ubuntu, you may want to add something like
|
||||||
|
this to your <literal>configuration.nix</literal>:
|
||||||
|
</para>
|
||||||
|
<programlisting>
|
||||||
<xref linkend="opt-boot.loader.grub.extraEntries"/> = ''
|
<xref linkend="opt-boot.loader.grub.extraEntries"/> = ''
|
||||||
menuentry "Ubuntu" {
|
menuentry "Ubuntu" {
|
||||||
search --set=ubuntu --fs-uuid 3cc3e652-0c1f-4800-8451-033754f68e6e
|
search --set=ubuntu --fs-uuid 3cc3e652-0c1f-4800-8451-033754f68e6e
|
||||||
configfile "($ubuntu)/boot/grub/grub.cfg"
|
configfile "($ubuntu)/boot/grub/grub.cfg"
|
||||||
}
|
}
|
||||||
'';</programlisting>
|
'';</programlisting>
|
||||||
|
<para>
|
||||||
<para>(You can find the appropriate UUID for your partition in
|
(You can find the appropriate UUID for your partition in
|
||||||
<literal>/dev/disk/by-uuid</literal>)</para>
|
<literal>/dev/disk/by-uuid</literal>)
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Create the <literal>nixbld</literal> group and user on your
|
<para>
|
||||||
original distribution:</para>
|
Create the <literal>nixbld</literal> group and user on your original
|
||||||
|
distribution:
|
||||||
<screen>
|
</para>
|
||||||
|
<screen>
|
||||||
$ sudo groupadd -g 30000 nixbld
|
$ sudo groupadd -g 30000 nixbld
|
||||||
$ sudo useradd -u 30000 -g nixbld -G nixbld nixbld</screen>
|
$ sudo useradd -u 30000 -g nixbld -G nixbld nixbld</screen>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Download/build/install NixOS:</para>
|
<para>
|
||||||
|
Download/build/install NixOS:
|
||||||
<warning><para>Once you complete this step, you might no longer be
|
</para>
|
||||||
able to boot on existing systems without the help of a
|
<warning>
|
||||||
rescue USB drive or similar.</para></warning>
|
<para>
|
||||||
|
Once you complete this step, you might no longer be able to boot on
|
||||||
<screen>$ sudo PATH="$PATH" NIX_PATH="$NIX_PATH" `which nixos-install` --root /mnt</screen>
|
existing systems without the help of a rescue USB drive or similar.
|
||||||
|
</para>
|
||||||
<para>Again, please refer to the <literal>nixos-install</literal>
|
</warning>
|
||||||
step in <xref linkend="sec-installation" /> for more
|
<screen>$ sudo PATH="$PATH" NIX_PATH="$NIX_PATH" `which nixos-install` --root /mnt</screen>
|
||||||
information.</para>
|
<para>
|
||||||
|
Again, please refer to the <literal>nixos-install</literal> step in
|
||||||
<para>That should be it for installation to another partition!</para>
|
<xref linkend="sec-installation" /> for more information.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
That should be it for installation to another partition!
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Optionally, you may want to clean up your non-NixOS distribution:</para>
|
<para>
|
||||||
|
Optionally, you may want to clean up your non-NixOS distribution:
|
||||||
<screen>
|
</para>
|
||||||
|
<screen>
|
||||||
$ sudo userdel nixbld
|
$ sudo userdel nixbld
|
||||||
$ sudo groupdel nixbld</screen>
|
$ sudo groupdel nixbld</screen>
|
||||||
|
<para>
|
||||||
<para>If you do not wish to keep the Nix package mananager
|
If you do not wish to keep the Nix package manager installed either, run
|
||||||
installed either, run something like <literal>sudo rm -rv
|
something like <literal>sudo rm -rv ~/.nix-* /nix</literal> and remove the
|
||||||
~/.nix-* /nix</literal> and remove the line that the Nix
|
line that the Nix installer added to your <literal>~/.profile</literal>.
|
||||||
installer added to your <literal>~/.profile</literal>.</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<note><para>The following steps are only for installing NixOS in
|
<note>
|
||||||
place using
|
<para>
|
||||||
<literal>NIXOS_LUSTRATE</literal>:</para></note>
|
The following steps are only for installing NixOS in place using
|
||||||
|
<literal>NIXOS_LUSTRATE</literal>:
|
||||||
<para>Generate your NixOS configuration:</para>
|
</para>
|
||||||
|
</note>
|
||||||
<screen>$ sudo `which nixos-generate-config` --root /</screen>
|
<para>
|
||||||
|
Generate your NixOS configuration:
|
||||||
<para>Note that this will place the generated configuration files
|
</para>
|
||||||
in <literal>/etc/nixos</literal>. You'll probably want to edit
|
<screen>$ sudo `which nixos-generate-config` --root /</screen>
|
||||||
the configuration files. Refer to the
|
<para>
|
||||||
<literal>nixos-generate-config</literal> step in <xref
|
Note that this will place the generated configuration files in
|
||||||
linkend="sec-installation" /> for more information.</para>
|
<literal>/etc/nixos</literal>. You'll probably want to edit the
|
||||||
|
configuration files. Refer to the <literal>nixos-generate-config</literal>
|
||||||
<para>You'll likely want to set a root password for your first boot
|
step in <xref
|
||||||
using the configuration files because you won't have a chance
|
linkend="sec-installation" /> for more
|
||||||
to enter a password until after you reboot. You can initalize
|
information.
|
||||||
the root password to an empty one with this line: (and of course
|
</para>
|
||||||
don't forget to set one once you've rebooted or to lock the
|
<para>
|
||||||
account with <literal>sudo passwd -l root</literal> if you use
|
You'll likely want to set a root password for your first boot using the
|
||||||
<literal>sudo</literal>)</para>
|
configuration files because you won't have a chance to enter a password
|
||||||
|
until after you reboot. You can initalize the root password to an empty one
|
||||||
<programlisting>
|
with this line: (and of course don't forget to set one once you've rebooted
|
||||||
|
or to lock the account with <literal>sudo passwd -l root</literal> if you
|
||||||
|
use <literal>sudo</literal>)
|
||||||
|
</para>
|
||||||
|
<programlisting>
|
||||||
<link linkend="opt-users.users._name__.initialHashedPassword">users.extraUsers.root.initialHashedPassword</link> = "";
|
<link linkend="opt-users.users._name__.initialHashedPassword">users.extraUsers.root.initialHashedPassword</link> = "";
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Build the NixOS closure and install it in the
|
<para>
|
||||||
<literal>system</literal> profile:</para>
|
Build the NixOS closure and install it in the <literal>system</literal>
|
||||||
|
profile:
|
||||||
<screen>$ nix-env -p /nix/var/nix/profiles/system -f '<nixpkgs/nixos>' -I nixos-config=/etc/nixos/configuration.nix -iA system</screen>
|
</para>
|
||||||
|
<screen>$ nix-env -p /nix/var/nix/profiles/system -f '<nixpkgs/nixos>' -I nixos-config=/etc/nixos/configuration.nix -iA system</screen>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Change ownership of the <literal>/nix</literal> tree to root
|
<para>
|
||||||
(since your Nix install was probably single user):</para>
|
Change ownership of the <literal>/nix</literal> tree to root (since your
|
||||||
|
Nix install was probably single user):
|
||||||
<screen>$ sudo chown -R 0.0 /nix</screen>
|
</para>
|
||||||
|
<screen>$ sudo chown -R 0.0 /nix</screen>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Set up the <literal>/etc/NIXOS</literal> and
|
<para>
|
||||||
<literal>/etc/NIXOS_LUSTRATE</literal> files:</para>
|
Set up the <literal>/etc/NIXOS</literal> and
|
||||||
|
<literal>/etc/NIXOS_LUSTRATE</literal> files:
|
||||||
<para><literal>/etc/NIXOS</literal> officializes that this is now a
|
</para>
|
||||||
NixOS partition (the bootup scripts require its presence).</para>
|
<para>
|
||||||
|
<literal>/etc/NIXOS</literal> officializes that this is now a NixOS
|
||||||
<para><literal>/etc/NIXOS_LUSTRATE</literal> tells the NixOS bootup
|
partition (the bootup scripts require its presence).
|
||||||
scripts to move <emphasis>everything</emphasis> that's in the
|
</para>
|
||||||
root partition to <literal>/old-root</literal>. This will move
|
<para>
|
||||||
your existing distribution out of the way in the very early
|
<literal>/etc/NIXOS_LUSTRATE</literal> tells the NixOS bootup scripts to
|
||||||
stages of the NixOS bootup. There are exceptions (we do need to
|
move <emphasis>everything</emphasis> that's in the root partition to
|
||||||
keep NixOS there after all), so the NixOS lustrate process will
|
<literal>/old-root</literal>. This will move your existing distribution out
|
||||||
not touch:</para>
|
of the way in the very early stages of the NixOS bootup. There are
|
||||||
|
exceptions (we do need to keep NixOS there after all), so the NixOS
|
||||||
|
lustrate process will not touch:
|
||||||
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem><para>The <literal>/nix</literal>
|
<listitem>
|
||||||
directory</para></listitem>
|
<para>
|
||||||
|
The <literal>/nix</literal> directory
|
||||||
<listitem><para>The <literal>/boot</literal>
|
</para>
|
||||||
directory</para></listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
<listitem><para>Any file or directory listed in
|
<para>
|
||||||
<literal>/etc/NIXOS_LUSTRATE</literal> (one per
|
The <literal>/boot</literal> directory
|
||||||
line)</para></listitem>
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Any file or directory listed in <literal>/etc/NIXOS_LUSTRATE</literal>
|
||||||
|
(one per line)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
<note>
|
||||||
<note><para>Support for <literal>NIXOS_LUSTRATE</literal> was added
|
<para>
|
||||||
in NixOS 16.09. The act of "lustrating" refers to the
|
Support for <literal>NIXOS_LUSTRATE</literal> was added in NixOS 16.09.
|
||||||
wiping of the existing distribution. Creating
|
The act of "lustrating" refers to the wiping of the existing distribution.
|
||||||
<literal>/etc/NIXOS_LUSTRATE</literal> can also be used on
|
Creating <literal>/etc/NIXOS_LUSTRATE</literal> can also be used on NixOS
|
||||||
NixOS to remove all mutable files from your root partition
|
to remove all mutable files from your root partition (anything that's not
|
||||||
(anything that's not in <literal>/nix</literal> or
|
in <literal>/nix</literal> or <literal>/boot</literal> gets "lustrated" on
|
||||||
<literal>/boot</literal> gets "lustrated" on the next
|
the next boot.
|
||||||
boot.</para>
|
</para>
|
||||||
<para>lustrate /ˈlʌstreɪt/ verb.</para>
|
<para>
|
||||||
<para>purify by expiatory sacrifice, ceremonial washing, or
|
lustrate /ˈlʌstreɪt/ verb.
|
||||||
some other ritual action.</para></note>
|
</para>
|
||||||
|
<para>
|
||||||
<para>Let's create the files:</para>
|
purify by expiatory sacrifice, ceremonial washing, or some other ritual
|
||||||
|
action.
|
||||||
<screen>
|
</para>
|
||||||
|
</note>
|
||||||
|
<para>
|
||||||
|
Let's create the files:
|
||||||
|
</para>
|
||||||
|
<screen>
|
||||||
$ sudo touch /etc/NIXOS
|
$ sudo touch /etc/NIXOS
|
||||||
$ sudo touch /etc/NIXOS_LUSTRATE
|
$ sudo touch /etc/NIXOS_LUSTRATE
|
||||||
</screen>
|
</screen>
|
||||||
|
<para>
|
||||||
<para>Let's also make sure the NixOS configuration files are kept
|
Let's also make sure the NixOS configuration files are kept once we reboot
|
||||||
once we reboot on NixOS:</para>
|
on NixOS:
|
||||||
|
</para>
|
||||||
<screen>
|
<screen>
|
||||||
$ echo etc/nixos | sudo tee -a /etc/NIXOS_LUSTRATE
|
$ echo etc/nixos | sudo tee -a /etc/NIXOS_LUSTRATE
|
||||||
</screen>
|
</screen>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Finally, move the <literal>/boot</literal> directory of your
|
<para>
|
||||||
current distribution out of the way (the lustrate process will
|
Finally, move the <literal>/boot</literal> directory of your current
|
||||||
take care of the rest once you reboot, but this one must be
|
distribution out of the way (the lustrate process will take care of the
|
||||||
moved out now because NixOS needs to install its own boot
|
rest once you reboot, but this one must be moved out now because NixOS
|
||||||
files:</para>
|
needs to install its own boot files:
|
||||||
|
</para>
|
||||||
<warning><para>Once you complete this step, your current
|
<warning>
|
||||||
distribution will no longer be bootable! If you didn't get
|
<para>
|
||||||
all the NixOS configuration right, especially those
|
Once you complete this step, your current distribution will no longer be
|
||||||
settings pertaining to boot loading and root partition,
|
bootable! If you didn't get all the NixOS configuration right, especially
|
||||||
NixOS may not be bootable either. Have a USB rescue device
|
those settings pertaining to boot loading and root partition, NixOS may
|
||||||
ready in case this happens. </para></warning>
|
not be bootable either. Have a USB rescue device ready in case this
|
||||||
|
happens.
|
||||||
<screen>
|
</para>
|
||||||
|
</warning>
|
||||||
|
<screen>
|
||||||
$ sudo mv -v /boot /boot.bak &&
|
$ sudo mv -v /boot /boot.bak &&
|
||||||
sudo /nix/var/nix/profiles/system/bin/switch-to-configuration boot</screen>
|
sudo /nix/var/nix/profiles/system/bin/switch-to-configuration boot</screen>
|
||||||
|
<para>
|
||||||
<para>Cross your fingers, reboot, hopefully you should get a NixOS
|
Cross your fingers, reboot, hopefully you should get a NixOS prompt!
|
||||||
prompt!</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>If for some reason you want to revert to the old
|
<para>
|
||||||
distribution, you'll need to boot on a USB rescue disk and do
|
If for some reason you want to revert to the old distribution, you'll need
|
||||||
something along these lines:</para>
|
to boot on a USB rescue disk and do something along these lines:
|
||||||
|
</para>
|
||||||
<screen>
|
<screen>
|
||||||
# mkdir root
|
# mkdir root
|
||||||
# mount /dev/sdaX root
|
# mount /dev/sdaX root
|
||||||
# mkdir root/nixos-root
|
# mkdir root/nixos-root
|
||||||
@@ -291,23 +332,25 @@ $ sudo mv -v /boot /boot.bak &&
|
|||||||
# mv -v root/boot.bak root/boot # We had renamed this by hand earlier
|
# mv -v root/boot.bak root/boot # We had renamed this by hand earlier
|
||||||
# umount root
|
# umount root
|
||||||
# reboot</screen>
|
# reboot</screen>
|
||||||
|
<para>
|
||||||
<para>This may work as is or you might also need to reinstall the
|
This may work as is or you might also need to reinstall the boot loader
|
||||||
boot loader</para>
|
</para>
|
||||||
|
<para>
|
||||||
<para>And of course, if you're happy with NixOS and no longer need
|
And of course, if you're happy with NixOS and no longer need the old
|
||||||
the old distribution:</para>
|
distribution:
|
||||||
|
</para>
|
||||||
<screen>sudo rm -rf /old-root</screen>
|
<screen>sudo rm -rf /old-root</screen>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>It's also worth noting that this whole process can be
|
<para>
|
||||||
automated. This is especially useful for Cloud VMs, where
|
It's also worth noting that this whole process can be automated. This is
|
||||||
provider do not provide NixOS. For instance, <link
|
especially useful for Cloud VMs, where provider do not provide NixOS. For
|
||||||
|
instance,
|
||||||
|
<link
|
||||||
xlink:href="https://github.com/elitak/nixos-infect">nixos-infect</link>
|
xlink:href="https://github.com/elitak/nixos-infect">nixos-infect</link>
|
||||||
uses the lustrate process to convert Digital Ocean droplets to
|
uses the lustrate process to convert Digital Ocean droplets to NixOS from
|
||||||
NixOS from other distributions automatically.</para>
|
other distributions automatically.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</orderedlist>
|
</orderedlist>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,46 +3,48 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-booting-from-pxe">
|
xml:id="sec-booting-from-pxe">
|
||||||
|
<title>Booting from the <quote>netboot</quote> media (PXE)</title>
|
||||||
|
|
||||||
<title>Booting from the <quote>netboot</quote> media (PXE)</title>
|
<para>
|
||||||
<para>
|
Advanced users may wish to install NixOS using an existing PXE or iPXE setup.
|
||||||
Advanced users may wish to install NixOS using an existing PXE or
|
</para>
|
||||||
iPXE setup.
|
|
||||||
</para>
|
<para>
|
||||||
<para>
|
|
||||||
These instructions assume that you have an existing PXE or iPXE
|
These instructions assume that you have an existing PXE or iPXE
|
||||||
infrastructure and simply want to add the NixOS installer as another
|
infrastructure and simply want to add the NixOS installer as another option.
|
||||||
option. To build the necessary files from a recent version of
|
To build the necessary files from a recent version of nixpkgs, you can run:
|
||||||
nixpkgs, you can run:
|
</para>
|
||||||
</para>
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
nix-build -A netboot nixos/release.nix
|
nix-build -A netboot nixos/release.nix
|
||||||
</programlisting>
|
</programlisting>
|
||||||
<para>
|
|
||||||
This will create a <literal>result</literal> directory containing: *
|
|
||||||
<literal>bzImage</literal> – the Linux kernel *
|
|
||||||
<literal>initrd</literal> – the initrd file *
|
|
||||||
<literal>netboot.ipxe</literal> – an example ipxe script
|
|
||||||
demonstrating the appropriate kernel command line arguments for this
|
|
||||||
image
|
|
||||||
</para>
|
|
||||||
<para>
|
|
||||||
If you’re using plain PXE, configure your boot loader to use the
|
|
||||||
<literal>bzImage</literal> and <literal>initrd</literal> files and
|
|
||||||
have it provide the same kernel command line arguments found in
|
|
||||||
<literal>netboot.ipxe</literal>.
|
|
||||||
</para>
|
|
||||||
<para>
|
|
||||||
If you’re using iPXE, depending on how your HTTP/FTP/etc. server is
|
|
||||||
configured you may be able to use <literal>netboot.ipxe</literal>
|
|
||||||
unmodified, or you may need to update the paths to the files to
|
|
||||||
match your server’s directory layout
|
|
||||||
</para>
|
|
||||||
<para>
|
|
||||||
In the future we may begin making these files available as build
|
|
||||||
products from hydra at which point we will update this documentation
|
|
||||||
with instructions on how to obtain them either for placing on a
|
|
||||||
dedicated TFTP server or to boot them directly over the internet.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
This will create a <literal>result</literal> directory containing: *
|
||||||
|
<literal>bzImage</literal> – the Linux kernel * <literal>initrd</literal>
|
||||||
|
– the initrd file * <literal>netboot.ipxe</literal> – an example ipxe
|
||||||
|
script demonstrating the appropriate kernel command line arguments for this
|
||||||
|
image
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
If you’re using plain PXE, configure your boot loader to use the
|
||||||
|
<literal>bzImage</literal> and <literal>initrd</literal> files and have it
|
||||||
|
provide the same kernel command line arguments found in
|
||||||
|
<literal>netboot.ipxe</literal>.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
If you’re using iPXE, depending on how your HTTP/FTP/etc. server is
|
||||||
|
configured you may be able to use <literal>netboot.ipxe</literal> unmodified,
|
||||||
|
or you may need to update the paths to the files to match your server’s
|
||||||
|
directory layout
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
In the future we may begin making these files available as build products
|
||||||
|
from hydra at which point we will update this documentation with instructions
|
||||||
|
on how to obtain them either for placing on a dedicated TFTP server or to
|
||||||
|
boot them directly over the internet.
|
||||||
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,17 +3,19 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-booting-from-usb">
|
xml:id="sec-booting-from-usb">
|
||||||
|
<title>Booting from a USB Drive</title>
|
||||||
|
|
||||||
<title>Booting from a USB Drive</title>
|
<para>
|
||||||
|
For systems without CD drive, the NixOS live CD can be booted from a USB
|
||||||
|
stick. You can use the <command>dd</command> utility to write the image:
|
||||||
|
<command>dd if=<replaceable>path-to-image</replaceable>
|
||||||
|
of=<replaceable>/dev/sdb</replaceable></command>. Be careful about specifying
|
||||||
|
the correct drive; you can use the <command>lsblk</command> command to get a
|
||||||
|
list of block devices.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>For systems without CD drive, the NixOS live CD can be booted from
|
<para>
|
||||||
a USB stick. You can use the <command>dd</command> utility to write the image:
|
On macOS:
|
||||||
<command>dd if=<replaceable>path-to-image</replaceable>
|
|
||||||
of=<replaceable>/dev/sdb</replaceable></command>. Be careful about specifying the
|
|
||||||
correct drive; you can use the <command>lsblk</command> command to get a list of
|
|
||||||
block devices.</para>
|
|
||||||
|
|
||||||
<para>On macOS:
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
$ diskutil list
|
$ diskutil list
|
||||||
[..]
|
[..]
|
||||||
@@ -24,36 +26,43 @@ $ diskutil unmountDisk diskN
|
|||||||
Unmount of all volumes on diskN was successful
|
Unmount of all volumes on diskN was successful
|
||||||
$ sudo dd bs=1m if=nix.iso of=/dev/rdiskN
|
$ sudo dd bs=1m if=nix.iso of=/dev/rdiskN
|
||||||
</programlisting>
|
</programlisting>
|
||||||
Using the 'raw' <command>rdiskN</command> device instead of <command>diskN</command>
|
Using the 'raw' <command>rdiskN</command> device instead of
|
||||||
completes in minutes instead of hours. After <command>dd</command> completes, a GUI
|
<command>diskN</command> completes in minutes instead of hours. After
|
||||||
dialog "The disk you inserted was not readable by this computer" will pop up, which
|
<command>dd</command> completes, a GUI dialog "The disk you inserted was not
|
||||||
can be ignored.</para>
|
readable by this computer" will pop up, which can be ignored.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>The <command>dd</command> utility will write the image verbatim to the drive,
|
<para>
|
||||||
making it the recommended option for both UEFI and non-UEFI installations. For
|
The <command>dd</command> utility will write the image verbatim to the drive,
|
||||||
non-UEFI installations, you can alternatively use
|
making it the recommended option for both UEFI and non-UEFI installations.
|
||||||
<link xlink:href="http://unetbootin.sourceforge.net/">unetbootin</link>. If you
|
For non-UEFI installations, you can alternatively use
|
||||||
cannot use <command>dd</command> for a UEFI installation, you can also mount the
|
<link xlink:href="http://unetbootin.sourceforge.net/">unetbootin</link>. If
|
||||||
ISO, copy its contents verbatim to your drive, then either:
|
you cannot use <command>dd</command> for a UEFI installation, you can also
|
||||||
|
mount the ISO, copy its contents verbatim to your drive, then either:
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Change the label of the disk partition to the label of the ISO
|
<para>
|
||||||
(visible with the blkid command), or</para>
|
Change the label of the disk partition to the label of the ISO (visible
|
||||||
|
with the blkid command), or
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Edit <filename>loader/entries/nixos-livecd.conf</filename> on the drive
|
<para>
|
||||||
and change the <literal>root=</literal> field in the <literal>options</literal>
|
Edit <filename>loader/entries/nixos-livecd.conf</filename> on the drive
|
||||||
line to point to your drive (see the documentation on <literal>root=</literal>
|
and change the <literal>root=</literal> field in the
|
||||||
in <link xlink:href="https://www.kernel.org/doc/Documentation/admin-guide/kernel-parameters.txt">
|
<literal>options</literal> line to point to your drive (see the
|
||||||
the kernel documentation</link> for more details).</para>
|
documentation on <literal>root=</literal> in
|
||||||
|
<link xlink:href="https://www.kernel.org/doc/Documentation/admin-guide/kernel-parameters.txt">
|
||||||
|
the kernel documentation</link> for more details).
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>If you want to load the contents of the ISO to ram after bootin
|
<para>
|
||||||
(So you can remove the stick after bootup) you can append the parameter
|
If you want to load the contents of the ISO to ram after bootin (So you
|
||||||
<literal>copytoram</literal> to the <literal>options</literal> field.</para>
|
can remove the stick after bootup) you can append the parameter
|
||||||
|
<literal>copytoram</literal> to the <literal>options</literal> field.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -3,63 +3,82 @@
|
|||||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
version="5.0"
|
version="5.0"
|
||||||
xml:id="sec-instaling-virtualbox-guest">
|
xml:id="sec-instaling-virtualbox-guest">
|
||||||
|
<title>Installing in a VirtualBox guest</title>
|
||||||
|
|
||||||
<title>Installing in a VirtualBox guest</title>
|
<para>
|
||||||
<para>
|
|
||||||
Installing NixOS into a VirtualBox guest is convenient for users who want to
|
Installing NixOS into a VirtualBox guest is convenient for users who want to
|
||||||
try NixOS without installing it on bare metal. If you want to use a pre-made
|
try NixOS without installing it on bare metal. If you want to use a pre-made
|
||||||
VirtualBox appliance, it is available at <link
|
VirtualBox appliance, it is available at
|
||||||
xlink:href="https://nixos.org/nixos/download.html">the downloads page</link>.
|
<link
|
||||||
If you want to set up a VirtualBox guest manually, follow these instructions:
|
xlink:href="https://nixos.org/nixos/download.html">the downloads
|
||||||
</para>
|
page</link>. If you want to set up a VirtualBox guest manually, follow these
|
||||||
|
instructions:
|
||||||
|
</para>
|
||||||
|
|
||||||
<orderedlist>
|
<orderedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Add a New Machine in VirtualBox with OS Type "Linux / Other Linux"
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Base Memory Size: 768 MB or higher.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
New Hard Disk of 8 GB or higher.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Mount the CD-ROM with the NixOS ISO (by clicking on CD/DVD-ROM)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Click on Settings / System / Processor and enable PAE/NX
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Click on Settings / System / Acceleration and enable "VT-x/AMD-V"
|
||||||
|
acceleration
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Save the settings, start the virtual machine, and continue installation
|
||||||
|
like normal
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</orderedlist>
|
||||||
|
|
||||||
<listitem><para>Add a New Machine in VirtualBox with OS Type "Linux / Other
|
<para>
|
||||||
Linux"</para></listitem>
|
There are a few modifications you should make in configuration.nix. Enable
|
||||||
|
booting:
|
||||||
<listitem><para>Base Memory Size: 768 MB or higher.</para></listitem>
|
</para>
|
||||||
|
|
||||||
<listitem><para>New Hard Disk of 8 GB or higher.</para></listitem>
|
|
||||||
|
|
||||||
<listitem><para>Mount the CD-ROM with the NixOS ISO (by clicking on
|
|
||||||
CD/DVD-ROM)</para></listitem>
|
|
||||||
|
|
||||||
<listitem><para>Click on Settings / System / Processor and enable
|
|
||||||
PAE/NX</para></listitem>
|
|
||||||
|
|
||||||
<listitem><para>Click on Settings / System / Acceleration and enable
|
|
||||||
"VT-x/AMD-V" acceleration</para></listitem>
|
|
||||||
|
|
||||||
<listitem><para>Save the settings, start the virtual machine, and continue
|
|
||||||
installation like normal</para></listitem>
|
|
||||||
|
|
||||||
</orderedlist>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
There are a few modifications you should make in configuration.nix.
|
|
||||||
Enable booting:
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-boot.loader.grub.device"/> = "/dev/sda";
|
<xref linkend="opt-boot.loader.grub.device"/> = "/dev/sda";
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Also remove the fsck that runs at startup. It will always fail to run,
|
Also remove the fsck that runs at startup. It will always fail to run,
|
||||||
stopping your boot until you press <literal>*</literal>.
|
stopping your boot until you press <literal>*</literal>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
<xref linkend="opt-boot.initrd.checkJournalingFS"/> = false;
|
<xref linkend="opt-boot.initrd.checkJournalingFS"/> = false;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Shared folders can be given a name and a path in the host system in the
|
Shared folders can be given a name and a path in the host system in the
|
||||||
VirtualBox settings (Machine / Settings / Shared Folders, then click on the
|
VirtualBox settings (Machine / Settings / Shared Folders, then click on the
|
||||||
"Add" icon). Add the following to the
|
"Add" icon). Add the following to the
|
||||||
<literal>/etc/nixos/configuration.nix</literal> to auto-mount them:
|
<literal>/etc/nixos/configuration.nix</literal> to auto-mount them:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<programlisting>
|
<programlisting>
|
||||||
{ config, pkgs, ...} :
|
{ config, pkgs, ...} :
|
||||||
@@ -74,8 +93,7 @@
|
|||||||
}
|
}
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
The folder will be available directly under the root directory.
|
The folder will be available directly under the root directory.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user