Skip to content
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion source/tutorials/nix-language.md
Original file line number Diff line number Diff line change
Expand Up @@ -1878,7 +1878,9 @@ builtins.fetchTarball "https://github.com/NixOS/nix/archive/7c3ab5751568a0bc6343
```

:::{note}
The Nixpkgs manual on [Fetchers][nixpkgs-fetchers] lists numerous additional library functions to fetch files over the network.
Nixpkgs provides its own fetcher functions to reduce the time needed for evaluating Nixpkgs. The Nixpkgs fetchers are not directly interchangeable with builtin fetchers; for example, the Nixpkgs fetchers require a hash argument.

The Nixpkgs manual on [Fetchers][nixpkgs-fetchers] contains further details on the differences between builtin fetchers and Nixpkgs fetchers. Nixpkgs also provides additional fetcher functions beyond the builtin ones. You can find the full list of fetchers provided by Nixpkgs in [Fetchers][nixpkgs-fetchers].
Comment thread
franzhusch marked this conversation as resolved.
Outdated
:::

It is an error if the network request fails.
Expand Down