examples: fix a builtins.fetchGit ref

This commit is contained in:
Bjørn Forsman 2022-03-27 19:22:25 +02:00
parent 7b0e7f6f58
commit 8d05f09275

View file

@ -310,7 +310,7 @@ In this example, mach-nix is used to resolve our python dependencies and provide
let
mach-nix = import (builtins.fetchGit {
url = "https://github.com/DavHau/mach-nix";
ref = "refs/heads/3.4.0"; # update this version
ref = "refs/tags/3.4.0"; # update this version
}) {
python = "python37";
};