diff options
author | Franck Cuny <franck@fcuny.net> | 2024-07-04 13:57:59 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-07-04 13:57:59 -0700 |
commit | 185e00e77e05f7fd905962d0555eba9887a8b14a (patch) | |
tree | ee32998541716551e7b5f8488c18ac99fef18f9e /content/notes | |
parent | add GHA check (diff) | |
download | fcuny.net-185e00e77e05f7fd905962d0555eba9887a8b14a.tar.gz |
check for broken links
Diffstat (limited to 'content/notes')
-rw-r--r-- | content/notes/working-with-nix.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/notes/working-with-nix.md b/content/notes/working-with-nix.md index 7da8ec7..1f5da81 100644 --- a/content/notes/working-with-nix.md +++ b/content/notes/working-with-nix.md @@ -28,7 +28,7 @@ In the repository, running `nix develop --build` will build the binary ### for Go For Go, there's the `buildGoModule`. Looking at the -[source](https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/go-modules/generic/default.nix) +[source](https://github.com/NixOS/nixpkgs/blob/fb7287e6d2d2684520f756639846ee07f6287caa/pkgs/development/go-modules/generic/default.nix) we can see there's a definition of what will be done for each phases. As a result, we don't have to define them ourselves. |