# `villas` as a Nix Flake `VILLASnode` is also packaged as a Nix Flake. ## Setup Nix Note that flakes are an (as of May 2023) experimental feature of the Nix project to provide the declarative and fully reproducible builds of Nix without the hassle of manually updating hashes. Using `villas` as a flake thus requires the nix package manager to be installed and the `flakes` and `nix-command` features to be enabled. Documentation: - Installation: https://nixos.org/download.html - Enable Flakes: https://nixos.wiki/wiki/Flakes#Enable_flakes Check if your installation works by running e.g. ```shell nix run nixpkgs#hello ``` ## Getting Started Try to run `villas node` by typing ```shell # `nix run` runs an output package provided by a flake # `github:VILLASframework/node` is the repository containing the flake # `?dir=packaging/nix` indicates that the `flake.nix` resides in this subdirectory # `#villas-minimal` chooses the output package you want to run # after the `--` follow the arguments to the `villas` tool (e.g. `node -h`) nix run 'github:VILLASframework/node?dir=packaging/nix#villas-minimal' -- node -h ``` The [`flake.nix`] provides 2 versions of `villas`: - `#villas-minimal`: `villas` without most optional dependencies - `#villas`: `villas` with most optional dependencies available to Nix The version chosen by default is `#villas`. Omitting the `#` suffix will select the more complete version of `villas`. ```shell # omit `#` suffix in the flake reference from above # note the difference supported nodes/formats in help output compared to above nix run 'github:VILLASframework/node?dir=packaging/nix' -- node -h ``` ## Simple Install You can also install `villas` into your local profile and have it available in `PATH`. ```shell nix profile install 'github:VILLASframework/node?dir=packaging/nix#villas' ``` If you don't want to add it directly into the global path you could add it into the flake registry as well. ```shell nix registy add villas 'github:VILLASframework/node?dir=packaging/nix' ``` This allows you to substitue all references to `github:VILLASframework/node?dir=packaging/nix#villas` with a simple `villas`. I'll be using the `villas` registry entry in the following sections. ## Development You can easily setup a development shell environment for `villas` by using the `devShells` provided in the [`flake.nix`] using `nix develop`. Try for example these commands in the repository root to create a new shell with all required dependecies to build various configurations of `villas`. ```shell # create a shell with all required build dependecies but without most optional ones nix develop ./packaging/nix#minimal # create a shell with all required build dependecies with most optional ones nix develop ./packaging/nix#full # the default creates the `#full` shell nix develop ./packaging/nix ``` ## Further Reading - The [Nix Manual](https://nixos.org/manual/nix/stable/): installing and using the Nix package manager and Nix language - The [Nixpkgs Manual](https://nixos.org/manual/nixpkgs/stable/): using the tools provided by Nixpkgs ## Docker/OCI Images OCI images created using nix can be as small as the typical `FROM scratch` images without worrying about missing dependencies or Copying things inbetween `Dockerfile` stages. Copying exactly the application, it's dependencies an nothing else can be done using only a few lines of Nix. Here we build a docker image containing the `#villas` flake output: ```shell # `docker load` reads OCI images from stdin # `nix build --impure --expr` builds a derivation from an impure Nix expression # `--no-link` omits creating the `result` symlink # `--print-out-paths` prints the built image's path to stdout docker load < $(nix build --no-link --print-out-paths --impure --expr ' let villas = (builtins.getFlake "villas").packages.x86_64-linux.villas; pkgs = (builtins.getFlake "nixpkgs").legacyPackages.x86_64-linux; in pkgs.dockerTools.buildImage { name = "villas"; tag = "nix"; created = "now"; copyToRoot = [villas]; config.Cmd = ["${villas}/bin/villas" "node" "-h"]; } ') ``` See https://nixos.org/manual/nixpkgs/stable/#sec-pkgs-dockerTools ## Simple cross-compilation to aarch64 The flake currently supports `x86_64-linux` and `aarch64-linux` systems. But especially on some weaker `aarch64` target machines, compiling `villas` from source is rather cumbersome. This flake has a non-standard `crossPackages` flake output. This is currently only useful for cross-compiling from `x86_64` to `aarch64`. ```shell nix build villas#crossPackages.x86_64-linux.aarch64-multiplatform.villas ``` If your target has a nix installation you can directly build and copy the cross-compiled package using `nix copy`. ```shell # build and copy in one nix copy villas#crossPackages.x86_64-linux.aarch64-multiplatform.villas --to ssh-ng://target-system ``` ```shell # build the cross-compiled package nix build villas#crossPackages.x86_64-linux.aarch64-multiplatform.villas # copy it over nix copy $(readlink result) --to ssh-ng://target # add the cross-compiled package to the target's PATH ssh target nix profile add $(readlink result) ``` Further parameters for port or user of the ssh connection can only be specified in the ssh configuration files. ## Customization The [`villas.nix`] file contains the Nix "derivation" used to build `villas`. Check the `# customization` options at the top to find out what optional things can be enabled. ### Building a customized `villas` Using and customizing the villas package requires some knowledge of the Nix expression language. And the standard `override` function used extensively in `nixpkgs`. `override` is a Nix function provided by many packages to change dependencies or build options. All of the inputs which can be overridden can be found at the top of [`villas.nix`]. See https://nixos.org/manual/nixpkgs/stable/#chap-overrides ```shell # `nix build` builds a derivation # `--expr ` specifies a Nix expression which evalutes to a "derivation" # `--impure` allows us to use a flake without specifying the exact git revision in `ref` # `ref` is the reference to the `villas` flake we want to use # `pkgs` is the set of `x86_64-linux` packages provided by the flake nix build --impure --expr ' let pkgs = (builtins.getFlake "villas").packages.x86_64-linux; in pkgs.villas-minimal.override { withExtraConfig = true; withNodeIec60870 = true; } ' ``` Here we override the `#villas-minimal` package to include `libconfig` configuration support and enable the `IEC61870-5-104` node. `nix build` now builds the customized `villas` and produces a `result` symlink in the current directory. `result` now points to a directory in the Nix store containing the installation. You can run the `villas` binary through the symlink. ```shell ./result/bin/villas node -h ``` ### Making it persistent Making persistent build configuration changes in a canonical way involves writing your own flake. A flake is basically a directory containing a `flake.nix` file. Since Nix is aware of VCS, you should create your own `flake.nix` in a new directory outside the `villas` source tree. Here is a basic flake to build upon: ```nix # flake.nix { description = "example of a customized villas"; inputs = { villas.url = "github:VILLASframework/node?dir=packaging/nix"; }; outputs = { self, villas }: let villas-pkgs = villas.packages.x86_64-linux; in { packages.x86_64-linux = rec { default = villas-custom; villas-custom = villas-pkgs.villas-minimal.override { version = "custom"; withExtraConfig = true; withNodeIec60870 = true; }; }; }; } ``` The attributes here are fairly simple: - `description`: short description of the flake - `inputs`: attribute set that specifies all dependencies of the flake - `outputs`: a Nix function taking `self` and all fetched `inputs` producing the flake outputs The `packages.x86_64-linux` output of a flake is a set of all packages buildable by nix on a `x86_64-linux` system. You can now build/run/install your customized `villas`. `nix` commands default to checking the current directory (and parent directories) for a `flake.nix` and using the `default` attribute if no `#output` is specified. The first time you use the flake a `flake.lock` will be created pinning villas to an exact git revision so future invocations will be exactly reproducible. ```shell # build custom `villas` and create the `result` symlink nix build . # run custom `villas node -h` nix run . -- node -h # install villas into default profile nix profile install . # create a shell environment where `villas` is available in path nix shell . # update the `flake.lock` if a newer `villas` is available on github nix flake update ``` ### Extending the flake Installing `villas` globally using `nix profile install` isn't really the typical Nix usage. A more interesting use of Nix would be a custom Nix shell environment containing your `villas-custom` and other tools of your choice. Here is a more complete `flake.nix` containing `devShells` available to `nix develop` and an OCI image. ```nix # flake.nix { description = "example of a customized villas"; inputs = { # nixpkgs from the `unstable` branch nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; # villas from the official repository villas.url = "github:VILLASframework/node?dir=packaging/nix"; # overwrite the `nixpkgs` used by `villas` to our version above # # this will negate the reproducibility of the `villas` flake, # but allows us to deduplicate the dependencies used in our shell # and those in villas. # # comment this line if an updated dependency causes a build failure villas.inputs.nixpkgs.follows = "nixpkgs"; }; outputs = { self, villas }: let villas-pkgs = villas.packages.x86_64-linux; pkgs = nixpkgs.packages.x86_64-linux; in { packages.x86_64-linux = rec { # run/build/install the `villas-custom` package by default default = villas-custom; # the customized villas package villas-custom = villas-pkgs.villas-minimal.override { withConfig = true; withNodeIec60870 = true; }; # an OCI image containing `villas-custom` image = pkgs.dockerTools.buildImage { name = "villas"; tag = "nix"; created = "now"; copyToRoot = [villas-custom]; config.Cmd = ["${villas-custom}/bin/villas" "node" "-h"]; }; }; devShells.x86_64-linux.default = pkgs.mkShell { name = "my-villas-dev-shell"; shellHook = "exec $SHELL"; packages = with pkgs; [ self.packages.x86_64-linux.villas-custom jq bat ]; }; }; } ``` You can use our new features like this: ```shell # run your shell for villas-node nix develop # load your custom OCI image into docker docker load < $(nix build --no-link --print-out-paths .#image) ``` [`villas.nix`]: ./villas.nix [`flake.nix`]: ./flake.nix