In my previous article, [How to build with Nix], I explained how to write a Nix package and contribute it to
the official Nix package repository. One of the advantages of Nix is how easy it is to develop your own custom
Nix package repository, called a channel. A channel can be implemented simply as a tarball containing a
default.nix
file like this:
let
pkgs = import <nixpkgs> {};
in