1. Introduction
1.1. Why Nix?
If you’ve opened this PDF, you already have your own motivation for learning Nix. Here’s how it helps me. As a researcher, I tend to work on a series of short-term projects, mostly demos and prototypes. For each one, I typically develop some software using a compiler, often with some open source libraries. Often I use other tools to analyse data or generate documentation, for example.
Problems would arise when handing off the project to colleagues; they would report errors when trying to build or run the project. Belatedly I would realise that my code relies on a library that they need to install. Or perhaps they had installed the library, but the version they’re using is incompatible.
Using containers helped with the problem. However, I didn’t want to develop in a container. I did all my development in my nice, familiar, environment with my custom aliases and shell prompt. and then I containerised the software. This added step was annoying for me, and if my colleague wanted to do some additional development, they would probably extract all of the source code from the container first anyway. Containers are great, but this isn’t the ideal use case for them.
Nix allows me to work in my custom environment, but forces me to specify any dependencies. It automatically tracks the version of each dependency so that it can replicate the environment wherever and whenever it’s needed.
1.2. Why flakes?
Flakes are labeled as an experimental feature, so it might seem safer to avoid them. However, they have been in use for years, and there is widespread adoption, so the aren’t going away any time soon. Flakes are easier to understand, and offer more features than the traditional Nix approach. After weighing the pros and cons, I feel it’s better to learn and use flakes; and this seems to be the general consensus.
1.3. Prerequisites
To follow along with the examples in this book, you will need access to a computer or (virtual machine) with Nix (or NixOS) installed and flakes enabled.
I recommend the installer from zero-to-nix.com. This installer automatically enables flakes.
More documentation (and another installer) available at nixos.org.
To enable flakes on an existing Nix or NixOS installation, see the instructions in the NixOS wiki.
|
There are hyphenated and unhyphenated versions of many Nix commands.
For example, Generally speaking, the unhyphenated versions are for working directly with flakes, while the hyphenated versions are for everything else. |
2. Hello, flake!
Before learning to write Nix flakes, let’s learn how to use them. I’ve created a simple example of a flake in this git repository. To run this flake, you don’t need to install anything; simply run the command below. The first time you use a flake, Nix has to fetch and build it, which may take time. Subsequent invocations should be instantaneous.
$ nix run "git+https://codeberg.org/mhwombat/hello-flake" Hello from your flake!
That’s a lot to type every time we want to use this package. Instead, we
can enter a shell with the package available to us, using the
nix shell command.
$ nix shell "git+https://codeberg.org/mhwombat/hello-flake"
In this shell, the command is on our $PATH, so we can execute the
command by name.
$ hello-flake Hello from your flake!
Nix didn’t install the package; it merely built and placed it in a directory called the “Nix store”. Thus we can have multiple versions of a package without worrying about conflicts. We can find out the location of the executable, if we’re curious.
$ which hello-flake /nix/store/qskl8ajlgnl654fhgsmv74yv8x9r3kzg-hello-flake/bin/hello-flake
Once we exit that shell, the hello-flake command is no longer
directly available.
$ exit $ hello-flake sh: line 3: hello-flake: command not found
However, we can still run the command using the store path we found earlier. That’s not particularly convenient, but it does demonstrate that the package remains in the store for future use.
/nix/store/0xbn2hi6h1m5h4kc02vwffs2cydrbc0r-hello-flake/bin/hello-flake
3. The hello-flake repo
Let’s clone the repository and see how the flake is defined.
$ git clone https://codeberg.org/mhwombat/hello-flake Cloning into 'hello-flake'... $ cd hello-flake $ ls flake.lock flake.nix hello-flake LICENSE README.md
This is a simple repo with just a few files. Like most git repos, it
includes LICENSE, which contains the software license, and README.md
which provides information about the repo.
The hello-flake file is the executable we ran earlier.
This particular executable is just a shell script, so we can view it.
It’s an extremly simple script with just two lines.
1
2
3
#!/usr/bin/env sh
echo "Hello from your flake!"
Now that we have a copy of the repo, we can execute this script directly.
$ ./hello-flake Hello from your flake!
Not terribly exciting, I know. But starting with such a simple package makes it easier to focus on the flake system without getting bogged down in the details. We’ll make this script a little more interesting later.
Let’s look at another file. The file that defines how to package a flake
is always called flake.nix.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
# See https://github.com/mhwombat/nix-for-numbskulls/blob/main/flakes.md
# for a brief overview of what each section in a flake should or can contain.
description = "a very simple and friendly flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
packages = rec {
hello = pkgs.stdenv.mkDerivation rec {
name = "hello-flake";
src = ./.;
unpackPhase = "true";
buildPhase = ":";
installPhase =
''
mkdir -p $out/bin
cp $src/hello-flake $out/bin/hello-flake
chmod +x $out/bin/hello-flake
'';
};
default = hello;
};
apps = rec {
hello = flake-utils.lib.mkApp { drv = self.packages.${system}.hello; };
default = hello;
};
}
);
}
If this is your first time seeing a flake definition, it probably looks intimidating. Flakes are written in a functional language called Nix[1]. Yes, “Nix” is the name of both the package manager and the language it uses. We’ll look at this in more detail shortly. For now, I’d like to focus on the inputs section.
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
};
There are just two entries, one for nixpkgs and one for flake-utils.
The first one, nixpkgs refers to the collection of standard software
packages that can be installed with the Nix package manager. The second,
flake-utils, is a collection of utilities that simplify writing
flakes. The important thing to note is that the hello-flake package
depends on nixpkgs and flake-utils.
Finally, let’s look at flake.lock, or rather, just part of it.
{
"nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1681202837,
"narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "cfacdce06f30d2b68473a46042957675eebb3401",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1681665000,
"narHash": "sha256-hDGTR59wC3qrQZFxVi2U3vTY+r02+Okbq080hO1C4Nk=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "3a6205d9f79fe526be03d8c465403b118ca4cf37",
"type": "github"
},
"original": {
"owner": "NixOS",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
}
. . .
If flake.nix seemed intimidating, then this file looks like an
invocation for Cthulhu. The good news is that this file is automatically
generated; you never need to write it. It contains information about all
of the dependencies for the flake, including where they came from, the
exact version/revision, and hash. This lockfile uniquely specifies all
flake dependencies, (e.g., version number, branch, revision, hash), so
that anyone, anywhere, any time, can re-create the exact same
environment that the original developer used.
No more complaints of “but it works on my machine!”. That is the benefit of using flakes.
4. Flake structure
The basic structure of a flake is shown below.
{
description = package description
inputs = dependencies
outputs = what the flake produces
nixConfig = advanced configuration options
}
4.1. Description
The description part is self-explanatory; it’s just a string. You
probably won’t need nixConfig unless you’re doing something fancy. I’m
going to focus on what goes into the inputs and outputs sections,
and highlight some of the things I found confusing when I began using flakes.
4.2. Inputs
This section specifies the dependencies of a flake. It’s an attribute set; it maps keys to values.
To ensure that a build is reproducible, the build step runs in a pure environment with no network access. Therefore, any external dependencies must be specified in the “inputs” section so they can be fetched in advance (before we enter the pure environment).
Each entry in this section maps an input name to a flake reference. This commonly takes the following form.
NAME.url = URL-LIKE-EXPRESSION
As a first example of a flake reference, all (almost all?) flakes depend on “nixpkgs”, which is a large Git repository of programs and libraries that are pre-packaged for Nix. We can write that as
nixpkgs.url = "github:NixOS/nixpkgs/nixos-version";
where version is replaced with the version number that you used to build
the package, e.g. 22.11. Information about the latest nixpkgs releases
is available at https://status.nixos.org/. You can also write the entry
without the version number
nixpkgs.url = "github:NixOS/nixpkgs/nixos";
or more simply,
nixpkgs.url = "nixpkgs";
You might be concerned that omitting the version number would make the
build non-reproducible. If someone else builds the flake, could they end
up with a different version of nixpkgs? No! remember that the lockfile
(flake.lock) uniquely specifies all flake inputs.
Git and Mercurial repositories are the most common type of flake reference, as in the examples below.
- A Git repository
-
git+https://github.com/NixOS/patchelf - A specific branch of a Git repository
-
git+https://github.com/NixOS/patchelf?ref=master - A specific revision of a Git repository
-
git+https://github.com/NixOS/patchelf?ref=master&rev=f34751b88bd07d7f44f5cd3200fb4122bf916c7e - A tarball
You can find more examples of flake references in the Nix Reference Manual.
|
Although you probably won’t need to use it, there is another syntax for flake references that you might encounter. This example
is equivalent to
|
Each of the inputs is fetched, evaluated and passed to the outputs
function as a set of attributes with the same name as the corresponding
input.
4.3. Outputs
This section is a function that essentially returns the recipe for building the flake.
We said above that inputs are passed to the outputs, so we need to
list them as parameters. This example references the import-cargo
dependency defined in the previous example.
outputs = { self, nixpkgs, import-cargo }: {
definitions for outputs
};
So what actually goes in the highlighted section? That depends on the programming languages your software is written in, the build system you use, and more. There are Nix functions and tools that can simplify much of this, and new, easier-to-use ones are released regularly. We’ll look at some of these in the next section.
5. A generic flake
The previous section presented a very high-level view of flakes, focusing on the basic structure. In this section, we will add a bit more detail.
Flakes are written in the Nix programming language, which is a functional language. As with most programming languages, there are many ways to achieve the same result. Below is an example you can follow when writing your own flakes. I’ll explain the example in some detail.
{
description = "brief package description";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
...other dependencies... ❶
};
outputs = { self, nixpkgs, flake-utils, ...other dependencies... ❷ }:
flake-utils.lib.eachDefaultSystem (system: ❸
let
pkgs = import nixpkgs { inherit system; };
python = pkgs.python3;
in
{
devShells = rec {
default = pkgs.mkShell {
packages = [ packages needed for development shell; ❹ ]))
];
};
packages = rec {
myPackageName = package definition; ❺
default = myPackageName;
};
apps = rec {
myPackageName = flake-utils.lib.mkApp { drv = self.packages.${system}.myPackageName; };
default = myPackageName;
};
}
);
}
We discussed how to specify flake inputs ❶ in the previous section, so
this part of the flake should be familiar. Remember also that any
dependencies in the input section should also be listed at the beginning
of the outputs section ❷.
Now it’s time to look at the content of the output section. If we want
the package to be available for multiple systems (e.g.,
“x86_64-linux”, “aarch64-linux”, “x86_64-darwin”, and
“aarch64-darwin”), we need to define the output for each of those
systems. Often the definitions are identical, apart from the name of the
system. The eachDefaultSystem function ❸ provided by flake-utils allows
us to write a single definition using a variable for the system name.
The function then iterates over all default systems to generate the
outputs for each one.
The devShells variable specifies the environment that should be
available when doing development on the package. If you don’t need a
special development environment, you can omit this section. At ❹ you
would list any tools (e.g., compilers and language-specific build tools)
you want to have available in a development shell. If the compiler needs
access to language-specific packages, there are Nix functions to assist
with that. These functions are very language-specific, and not always
well-documented. We will see examples for some languages later in the
tutorial. In general, I recommend that you do a web search for
“nix language”, and try to find resources that were written or updated
recently.
The packages variable defines the packages that this flake provides.
The package definition ❺ depends on the programming languages your
software is written in, the build system you use, and more. There are
Nix functions and tools that can simplify much of this, and new,
easier-to-use ones are released regularly. Again, I recommend that you
do a web search for “nix language”, and try to find resources that
were written or updated recently.
The apps variable identifies any applications provided by the flake.
In particular, it identifies the default executable ❻ that nix run
will run if you don’t specify an app.
Below is a list of some functions that are commonly used in this section.
- General-purpose
-
The standard environment provides
mkDerivation, which is especially useful for the typical./configure; make; make installscenario. It’s customisable. - Python
-
buildPythonApplication,buildPythonPackage. - Haskell
-
mkDerivation(Haskell version, which is a wrapper around the standard environment version),developPackage,callCabal2Nix.
6. Another look at hello-flake
Now that we have a better understanding of the structure of flake.nix,
let’s have a look at the one we saw earlier, in the hello-flake repo.
If you compare this flake definition to the colour-coded template
presented in the previous section, most of it should look familiar.
{
description = "a very simple and friendly flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
packages = rec {
hello =
. . .
SOME UNFAMILIAR STUFF
. . .
};
default = hello;
};
apps = rec {
hello = flake-utils.lib.mkApp { drv = self.packages.${system}.hello; };
default = hello;
};
}
);
}
This flake.nix doesn’t have a devShells section, because development
on the current version doesn’t require anything beyond
the “bare bones” linux commands. Later we will add a feature that requires
additional development tools.
Now let’s look at the section I labeled SOME UNFAMILIAR STUFF and
see what it does.
packages = rec {
hello = pkgs.stdenv.mkDerivation rec { ❶
name = "hello-flake";
src = ./.; ❷
unpackPhase = "true";
buildPhase = ":";
installPhase =
''
mkdir -p $out/bin ❸
cp $src/hello-flake $out/bin/hello-flake ❹
chmod +x $out/bin/hello-flake ❺
'';
};
This flake uses mkDerivation ❶ which is a very useful
general-purpose package builder provided by the Nix standard
environment. It’s especially useful for the typical
./configure; make; make install scenario, but for this flake we don’t
even need that.
The name variable is the name of the flake, as it would appear in a
package listing if we were to add it to Nixpkgs or another package
collection. The src variable ❷ supplies the location of the source
files, relative to flake.nix. When a flake is accessed for the first
time, the repository contents are fetched in the form of a tarball. The
unpackPhase variable indicates that we do want the tarball to be
unpacked.
The buildPhase variable is a sequence of Linux commands to build the
package. Typically, building a package requires compiling the source
code. However, that’s not required for a simple shell script. So
buildPhase consists of a single command, :,
which is a no-op or “do nothing” command.
The installPhase variable is a sequence of Linux commands that will do
the actual installation. In this case, we create a directory ❸ for the
installation, copy the hello-flake script there ❹, and make the
script executable ❺. The environment variable $src refers to the
source directory, which we specified earlier ❷.
Earlier we said that the build step runs in a pure environment to ensure
that builds are reproducible. This means no Internet access; indeed no
access to any files outside the build directory. During the build and
install phases, the only commands available are those provided by the
Nix standard environment and the external dependencies identified in the
inputs section of the flake.
I’ve mentioned the Nix standard environment before, but I didn’t explain
what it is. The standard environment, or stdenv, refers to the
functionality that is available during the build and install phases of a
Nix package (or flake). It includes the commands listed
below[2].
-
The GNU C Compiler, configured with C and C++ support.
-
GNU coreutils (contains a few dozen standard Unix commands).
-
GNU findutils (contains find).
-
GNU diffutils (contains diff, cmp).
-
GNU sed.
-
GNU grep.
-
GNU awk.
-
GNU tar.
-
gzip, bzip2 and xz.
-
GNU Make.
-
Bash.
-
The patch command.
-
On Linux, stdenv also includes the patchelf utility.
Only a few environment variables are available. The most interesting ones are listed below.
-
$nameis the package name. -
$srcrefers to the source directory. -
$outis the path to the location in the Nix store where the package will be added. -
$systemis the system that the package is being built for. -
$PWDand$TMPboth point to a temporary build directories -
$HOMEand$PATHpoint to nonexistent directories, so the build cannot rely on them.
7. Modifying the flake
7.1. The Nix development shell
Let’s make a simple modification to the script. This will give you an opportunity to check your understanding of flakes.
The first step is to enter a development shell.
$ nix develop
The flake.nix file specifies all of the tools that are needed during
development of the package. The nix develop command puts us in a shell
with those tools. As it turns out, we didn’t need any extra tools
(beyond the standard environment) for development yet, but that’s
usually not the case. Also, we will soon need another tool.
A development environment only allows you to develop the package. Don’t expect the package outputs (e.g. executables) to be available until you build them. However, our script doesn’t need to be compiled, so can’t we just run it?
$ hello-flake bash: line 16: hello-flake: command not found
That worked before; why isn’t it working now? Earlier we used
nix shell to enter a runtime environment where hello-flake was
available and on the $PATH. This time we entered a development
environment using the nix develop command. Since the flake hasn’t been
built yet, the executable won’t be on the $PATH. We can, however, run
it by specifying the path to the script.
$ ./hello-flake Hello from your flake!
We can also build the flake using the nix build command, which places
the build outputs in a directory called result.
$ nix build $ result/bin/hello-flake Hello from your flake!
Rather than typing the full path to the executable, it’s more convenient
to use nix run.
$ nix run Hello from your flake!
Here’s a summary of the more common Nix commands.
| command | Action |
|---|---|
|
Enters a development shell with all the required
development tools (e.g. compilers and linkers) available (as specified
by |
|
Enters a runtime shell where the flake’s executables are
available on the |
|
Builds the flake and puts the output in a directory called
|
|
Runs the flake’s default executable, rebuilding the package
first if needed. Specifically, it runs the version in the Nix store, not
the version in |
7.2. Introducing a dependency
Now we’re ready to make the flake a little more interesting.
Instead of using the echo command in the script, we can use the Linux cowsay
command.
Here’s the hello-flake file, with the modified line highlighted.
#!/usr/bin/env sh
cowsay "Hello from your flake!"
Let’s test the modified script.
$ ./hello-flake ./hello-flake: line 3: cowsay: command not found
What went wrong? Remember that we are in a development shell. Since
flake.nix didn’t define the devShells variable, the development
shell only includes the Nix standard environment. In particular, the
cowsay command is not available.
To fix the problem, we can modify flake.nix.
We don’t need to add cowsay to the inputs section because it’s included in nixpkgs,
which is already an input.
However, we also want it to be available in a develoment shell.
The highlighted modifications below will accomplish that.
{
# See https://github.com/mhwombat/nix-for-numbskulls/blob/main/flakes.md
# for a brief overview of what each section in a flake should or can contain.
description = "a very simple and friendly flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells = rec {
default = pkgs.mkShell {
packages = [ pkgs.cowsay ];
};
};
packages = rec {
hello = pkgs.stdenv.mkDerivation rec {
name = "hello-flake";
src = ./.;
unpackPhase = "true";
buildPhase = ":";
installPhase =
''
mkdir -p $out/bin
cp $src/hello-flake $out/bin/hello-flake
chmod +x $out/bin/hello-flake
'';
};
default = hello;
};
apps = rec {
hello = flake-utils.lib.mkApp { drv = self.packages.${system}.hello; };
default = hello;
};
}
);
}
Now we restart the development shell and see that the cowsay command is
available and the script works. Because we’ve updated source files
but haven’t git commited the new version, we get a warning message
about it being “dirty”. It’s just a warning, though; the script runs
correctly.
$ nix develop
warning: Git tree '/home/amy/codeberg/nix-book/source/modify-hello-flake/hello-flake' is dirty
$ which cowsay # is it available now?
/nix/store/gfi27h4y5n4aralcxrc0377p8mjb1cvb-cowsay-3.7.0/bin/cowsay
$ ./hello-flake
________________________
< Hello from your flake! >
------------------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
Alternatively, we could use nix run.
$ nix run
warning: Git tree '/home/amy/codeberg/nix-book/source/modify-hello-flake/hello-flake' is dirty
________________________
< Hello from your flake! >
------------------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
Note, however, that nix run rebuilt the package in the Nix store and
ran that. It did not alter the copy in the result directory, as
we’ll see next.
$ cat result/bin/hello-flake #!/nix/store/zlf0f88vj30sc7567b80l52d19pbdmy2-bash-5.2-p15/bin/sh echo "Hello from your flake!"
If we want to update the version in result, we need nix build again.
$ nix build warning: Git tree '/home/amy/codeberg/nix-book/source/modify-hello-flake/hello-flake' is dirty $ cat result/bin/hello-flake #!/nix/store/zlf0f88vj30sc7567b80l52d19pbdmy2-bash-5.2-p15/bin/sh cowsay "Hello from your flake!"
Let’s git commit the changes and verify that the warning goes away. We
don’t need to git push the changes until we’re ready to share them.
$ git commit hello-flake flake.nix -m 'added bovine feature'
[main c887dd0] added bovine feature
2 files changed, 7 insertions(+), 1 deletion(-)
$ nix run
________________________
< Hello from your flake! >
------------------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
7.3. Development workflows
If you’re getting confused about when to use the different commands, it’s because there’s more than one way to use Nix. I tend to think of it as two different development workflows.
My usual, high-level workflow is quite simple.
-
nix runto re-build (if necessary) and run the executable. -
Fix any problems in
flake.nixor the source code. -
Repeat until the package works properly.
In the high-level workflow, I don’t use a development shell because I
don’t need to directly invoke development tools such as compilers and
linkers. Nix invokes them for me according to the output definition in
flake.nix.
Occasionally I want to work at a lower level, and invoke compiler, linkers, etc. directly. Perhaps want to work on one component without rebuilding the entire package. Or perhaps I’m confused by some error message, so I want to temporarily bypass Nix and work directly with the compiler. In this case I temporarily switch to a low-level workflow.
-
nix developto enter a development shell with any development tools I need (e.g. compilers, linkers, documentation generators). -
Directly invoke tools such as compilers.
-
Fix any problems in
flake.nixor the source code. -
Directly invoke the executable. Note that the location of the executable depends on the development tools – It probably isn’t
result! -
Repeat until the package works properly.
I generally only use nix build if I just want to build the package but
not execute anything (perhaps it’s just a library).
7.4. This all seems like a hassle!
It is a bit annoying to modify flake.nix and ether rebuild or reload
the development environment every time you need another tool. However,
this Nix way of doing things ensures that all of your dependencies, down
to the exact versions, are captured in flake.lock, and that anyone
else will be able to reproduce the development environment.
8. A new flake from scratch (Python)
At last we are ready to create a flake from scratch! Start with an empty directory and create a git repository.
$ mkdir hello-python $ cd hello-python $ git init Initialized empty Git repository in /home/amy/codeberg/nix-book/source/python-flake/hello-python/.git/
8.1. A simple Python program
Next, we’ll create a simple Python program.
1
2
3
4
5
6
7
#!/usr/bin/env python
def main():
print("Hello from inside a Python program built with a Nix flake!")
if __name__ == "__main__":
main()
Before we package the program, let’s verify that it runs. We’re going to
need Python. By now you’ve probably figured out that we can write a
flake.nix and define a development shell that includes Python. We’ll
do that shortly, but first I want to show you a handy shortcut. We can
lauch a temporary shell with any Nix packages we want. This is
convenient when you just want to try out some new software and you’re
not sure if you’ll use it again. It’s also convenient when you’re not
ready to write flake.nix (perhaps you’re not sure what tools and
packages you need), and you want to experiment a bit first.
The command to enter a temporary shell is
nix-shell -p packages
If there are multiple packages, they should be separated by spaces.
|
The command used here is |
Let’s enter a shell with Python so we can test the program.
$ nix-shell -p python3 $ python hello.py Hello from inside a Python program built with a Nix flake!
8.2. A Python builder
Next, create a Python script to build the package. We’ll use Python’s setuptools, but you can use other build tools. For more information on setuptools, see the Python Packaging User Guide, especially the section on setup args.
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python
from setuptools import setup
setup(
name='hello-flake-python',
version='0.1.0',
py_modules=['hello'],
entry_points={
'console_scripts': ['hello-flake-python = hello:main']
},
)
We won’t write flake.nix just yet. First we’ll try building the
package manually.
$ python -m build /nix/store/rpri9nb8xpwwqakyrqbg8zdslkjs2hd3-python3-3.10.11/bin/python: No module named build
The missing module error happens because we don’t have build available
in the temporary shell. We can fix that by adding “build” to the
temporary shell. When you need support for both a language and some of
its packages, it’s best to use one of the Nix functions that are
specific to the programming language and build system. For Python, we
can use the withPackages function.
$ nix-shell -p "python3.withPackages (ps: with ps; [ build ])"
Note that we’re now inside a temporary shell inside the previous
temporary shell! To get back to the original shell, we have to exit
twice. Alternatively, we could have done exit followed by the
nix-shell command.
$ python -m build
After a lot of output messages, the build succeeds.
8.3. The Nix flake
Now we should write flake.nix. We already know how to write most of
the flake from the examples we did earlier. The two parts that will be
different are the development shell and the package builder.
Let’s start with the development shell. It seems logical to write something like the following.
devShells = rec {
default = pkgs.mkShell {
packages = [ (python.withPackages (ps: with ps; [ build ])) ];
};
};
Note that we need the parentheses to prevent python.withPackages and
the argument from being processed as two separate tokens. Suppose we
wanted to work with virtualenv and pip instead of build. We could
write something like the following.
devShells = rec {
default = pkgs.mkShell {
packages = [
# Python plus helper tools
(python.withPackages (ps: with ps; [
virtualenv # Virtualenv
pip # The pip installer
]))
];
};
};
For the package builder, we can use the buildPythonApplication
function.
packages = rec {
hello = python.pkgs.buildPythonApplication {
name = "hello-flake-python";
buildInputs = with python.pkgs; [ pip ];
src = ./.;
};
default = hello;
};
If you put all the pieces together, your flake.nix should look
something like this.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
# See https://github.com/mhwombat/nix-for-numbskulls/blob/main/flakes.md
# for a brief overview of what each section in a flake should or can contain.
description = "a very simple and friendly flake written in Python";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
python = pkgs.python3;
in
{
devShells = rec {
default = pkgs.mkShell {
packages = [
# Python plus helper tools
(python.withPackages (ps: with ps; [
virtualenv # Virtualenv
pip # The pip installer
]))
];
};
};
packages = rec {
hello = python.pkgs.buildPythonApplication {
name = "hello-flake-python";
buildInputs = with python.pkgs; [ pip ];
src = ./.;
};
default = hello;
};
apps = rec {
hello = flake-utils.lib.mkApp { drv = self.packages.${system}.hello; };
default = hello;
};
}
);
}
Let’s try out the new flake.
$ nix run warning: Git tree '/home/amy/codeberg/nix-book/source/python-flake/hello-python' is dirty error: getting status of '/nix/store/0ccnxa25whszw7mgbgyzdm4nqc0zwnm8-source/flake.nix': No such file or directory
Why can’t it find flake.nix? Nix flakes only “see” files that are
part of the repository. We need to add all of the important files to the
repo before building or running the flake.
$ git add flake.nix setup.py hello.py $ nix run warning: Git tree '/home/amy/codeberg/nix-book/source/python-flake/hello-python' is dirty warning: creating lock file '/home/amy/codeberg/nix-book/source/python-flake/hello-python/flake.lock' warning: Git tree '/home/amy/codeberg/nix-book/source/python-flake/hello-python' is dirty this derivation will be built: /nix/store/v6gfmxih111xaffz9jrn35msbpfqd2vs-hello-flake-python.drv building '/nix/store/v6gfmxih111xaffz9jrn35msbpfqd2vs-hello-flake-python.drv'... Hello from inside a Python program built with a Nix flake!
We’d like to share this package with others, but first we should do some
cleanup. When the package was built (automatically by the nix run
command), it created a flake.lock file. We need to add this to the
repo, and commit all important files.
$ git add flake.lock $ git commit -a -m 'initial commit' [master (root-commit) 3ce1881] initial commit 4 files changed, 127 insertions(+) create mode 100644 flake.lock create mode 100644 flake.nix create mode 100644 hello.py create mode 100644 setup.py
You can test that your package is properly configured by going to another directory and running it from there.
$ cd .. $ nix run ./hello-python Hello from inside a Python program built with a Nix flake!
If you move the project to a public repo, anyone can run it. Recall from
the beginning of the tutorial that you were able to run hello-flake
directly from my repo with the following command.
nix run "git+https://codeberg.org/mhwombat/hello-flake"
Modify the URL accordingly and invite someone else to run your new Python flake.
9. nix-shell recipes
There may be times where all you need is a shell. Perhaps you’re doing a quick, one-off task. In this situation, the older, non-flake way of using Nix may be more convenient. The examples in this chapter will illustrate the process.
9.1. Shell with access to a package from the Nixpkgs/NixOS repo
This shell provides access to two packages from nixpkgs: hello and cowsay.
1
2
3
4
5
6
7
with (import <nixpkgs> {});
mkShell {
buildInputs = [
hello
cowsay
];
}
Here’s a demonstration using the shell.
$ nix-shell
$ hello
Hello, world!
$ cowsay "moo"
_____
< moo >
-----
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
The command-line equivalent would be nix-shell -p hello cowsay
9.2. Shell with access to a package defined in a remote git repo
1
2
3
4
5
6
7
8
9
10
with (import <nixpkgs> {});
let
hello = import (builtins.fetchGit {
url = "https://codeberg.org/mhwombat/hello-nix";
rev = "aa2c87f8b89578b069b09fdb2be30a0c9d8a77d8";
});
in
mkShell {
buildInputs = [ hello ];
}
Here’s a demonstration using the shell.
$ nix-shell $ hello bash: line 2: hello: command not found
9.3. Shell with access to a specific revision of a flake
1
2
3
4
5
6
7
8
9
with (import <nixpkgs> {});
let
hello = (builtins.getFlake git+https://codeberg.org/mhwombat/hello-flake?ref=main&rev=3aa43dbe7be878dde7b2bdcbe992fe1705da3150).packages.${builtins.currentSystem}.default;
in
mkShell {
buildInputs = [
hello
];
}
Here’s a demonstration using the shell.
$ nix-shell $ hello bash: line 2: hello: command not found
9.4. Shell with access to a Haskell package on your local computer
This shell provides access to three Haskell packages that are on my hard drive.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
with (import <nixpkgs> {});
let
pandoc-linear-table = haskellPackages.callCabal2nix "pandoc-linear-table" /home/amy/github/pandoc-linear-table {};
pandoc-logic-proof = haskellPackages.callCabal2nix "pandoc-logic-proof" /home/amy/github/pandoc-logic-proof {};
pandoc-columns = haskellPackages.callCabal2nix "pandoc-columns" /home/amy/github/pandoc-columns {};
in
mkShell {
buildInputs = [
pandoc
pandoc-linear-table
pandoc-logic-proof
pandoc-columns
];
}
9.5. Shell with access to a Haskell package on your local computer, with interdependencies
This shell provides access to four Haskell packages that are on my hard drive. The fourth package depends on the first three to build.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
with (import <nixpkgs> {});
let
pandoc-linear-table = haskellPackages.callCabal2nix "pandoc-linear-table" /home/amy/github/pandoc-linear-table {};
pandoc-logic-proof = haskellPackages.callCabal2nix "pandoc-logic-proof" /home/amy/github/pandoc-logic-proof {};
pandoc-columns = haskellPackages.callCabal2nix "pandoc-columns" /home/amy/github/pandoc-columns {};
pandoc-maths-web = haskellPackages.callCabal2nix "pandoc-maths-web" /home/amy/github/pandoc-maths-web
{
inherit pandoc-linear-table pandoc-logic-proof pandoc-columns;
};
in
mkShell {
buildInputs = [
pandoc
pandoc-linear-table
pandoc-logic-proof
pandoc-columns
pandoc-maths-web
];
}
9.6. Shell with an environment variable set
This shell has the environment variable FOO set to “bar”
1
2
3
4
5
6
with (import <nixpkgs> {});
mkShell {
shellHook = ''
export FOO="bar"
'';
}
Here’s a demonstration using the shell.
$ nix-shell $ echo "FOO=$FOO" FOO=
10. Nix-shell shebangs
You can use nix-shell to run scripts in arbitrary languages, providing
the necessary dependencies. This is particularly convenient for
standalone scripts because you don’t need to create a repo and write a
separate flake.nix.
The script should start with two “shebang” (#!) commands. The first
should invoke nix-shell. The second should declares the scrpt
interpreter and any dependencies. Here are some examples.
10.1. A Bash script depending on a package in the nixpkgs repo.
1
2
3
#! /usr/bin/env nix-shell
#! nix-shell -i bash -p cowsay
cowsay "Pretty cool, huh?"
___________________
< Pretty cool, huh? >
-------------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
10.2. A Bash script depending on a package in the nixpkgs repo.
1
2
3
4
5
6
7
8
9
10
11
#! /usr/bin/env nix-shell
#! nix-shell -i python3 -p python3Packages.html-sanitizer
from html_sanitizer import Sanitizer
sanitizer = Sanitizer() # default configuration
original='<span style="font-weight:bold">some text</span>'
print('original: ', original)
sanitized=sanitizer.sanitize(original)
print('sanitized: ', sanitized)
original: <span style="font-weight:bold">some text</span> sanitized: <strong>some text</strong>