Remove a URL literal from fetchTarball docs

Change-Id: I254b793b42f77ffe9f357f3b376683e5758f23b5
This commit is contained in:
jade 2024-05-04 16:55:27 -07:00
parent 8dfb30a235
commit 4886d4592b

View file

@ -319,7 +319,7 @@ static RegisterPrimOp primop_fetchTarball({
a particular version of Nixpkgs, e.g.
```nix
with import (fetchTarball https://github.com/NixOS/nixpkgs/archive/nixos-14.12.tar.gz) {};
with import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-14.12.tar.gz") {};
stdenv.mkDerivation { }
```