2021-07-01 12:35:48 +01:00
|
|
|
|
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="sec-custom-packages">
|
|
|
|
|
<title>Adding Custom Packages</title>
|
|
|
|
|
<para>
|
|
|
|
|
It’s possible that a package you need is not available in NixOS. In
|
|
|
|
|
that case, you can do two things. First, you can clone the Nixpkgs
|
|
|
|
|
repository, add the package to your clone, and (optionally) submit a
|
|
|
|
|
patch or pull request to have it accepted into the main Nixpkgs
|
|
|
|
|
repository. This is described in detail in the
|
|
|
|
|
<link xlink:href="https://nixos.org/nixpkgs/manual">Nixpkgs
|
|
|
|
|
manual</link>. In short, you clone Nixpkgs:
|
|
|
|
|
</para>
|
|
|
|
|
<programlisting>
|
|
|
|
|
$ git clone https://github.com/NixOS/nixpkgs
|
|
|
|
|
$ cd nixpkgs
|
|
|
|
|
</programlisting>
|
|
|
|
|
<para>
|
|
|
|
|
Then you write and test the package as described in the Nixpkgs
|
|
|
|
|
manual. Finally, you add it to
|
2021-07-04 03:12:05 +01:00
|
|
|
|
<xref linkend="opt-environment.systemPackages" />, e.g.
|
2021-07-01 12:35:48 +01:00
|
|
|
|
</para>
|
|
|
|
|
<programlisting language="bash">
|
|
|
|
|
environment.systemPackages = [ pkgs.my-package ];
|
|
|
|
|
</programlisting>
|
|
|
|
|
<para>
|
|
|
|
|
and you run <literal>nixos-rebuild</literal>, specifying your own
|
|
|
|
|
Nixpkgs tree:
|
|
|
|
|
</para>
|
|
|
|
|
<programlisting>
|
|
|
|
|
# nixos-rebuild switch -I nixpkgs=/path/to/my/nixpkgs
|
|
|
|
|
</programlisting>
|
|
|
|
|
<para>
|
|
|
|
|
The second possibility is to add the package outside of the Nixpkgs
|
|
|
|
|
tree. For instance, here is how you specify a build of the
|
|
|
|
|
<link xlink:href="https://www.gnu.org/software/hello/">GNU
|
|
|
|
|
Hello</link> package directly in
|
|
|
|
|
<literal>configuration.nix</literal>:
|
|
|
|
|
</para>
|
|
|
|
|
<programlisting language="bash">
|
|
|
|
|
environment.systemPackages =
|
|
|
|
|
let
|
|
|
|
|
my-hello = with pkgs; stdenv.mkDerivation rec {
|
|
|
|
|
name = "hello-2.8";
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://gnu/hello/${name}.tar.gz";
|
|
|
|
|
sha256 = "0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
in
|
|
|
|
|
[ my-hello ];
|
|
|
|
|
</programlisting>
|
|
|
|
|
<para>
|
|
|
|
|
Of course, you can also move the definition of
|
|
|
|
|
<literal>my-hello</literal> into a separate Nix expression, e.g.
|
|
|
|
|
</para>
|
|
|
|
|
<programlisting language="bash">
|
|
|
|
|
environment.systemPackages = [ (import ./my-hello.nix) ];
|
|
|
|
|
</programlisting>
|
|
|
|
|
<para>
|
|
|
|
|
where <literal>my-hello.nix</literal> contains:
|
|
|
|
|
</para>
|
|
|
|
|
<programlisting language="bash">
|
|
|
|
|
with import <nixpkgs> {}; # bring all of Nixpkgs into scope
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
name = "hello-2.8";
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://gnu/hello/${name}.tar.gz";
|
|
|
|
|
sha256 = "0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6";
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
</programlisting>
|
|
|
|
|
<para>
|
|
|
|
|
This allows testing the package easily:
|
|
|
|
|
</para>
|
|
|
|
|
<programlisting>
|
|
|
|
|
$ nix-build my-hello.nix
|
|
|
|
|
$ ./result/bin/hello
|
|
|
|
|
Hello, world!
|
|
|
|
|
</programlisting>
|
|
|
|
|
</section>
|