Merge pull request #421 from bjornfor/fix-example-ref

examples: fix a builtins.fetchGit ref
This commit is contained in:
DavHau 2022-03-28 10:00:28 +07:00 committed by GitHub
commit 86c3111786
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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";
};