From 50000ce382c144358c1dd0f5b2cd632785630003 Mon Sep 17 00:00:00 2001 From: Sylvain Bellemare Date: Thu, 1 Oct 2020 23:34:53 +0100 Subject: [PATCH] Remove semi-colon from fetchTarball example --- source/tutorials/towards-reproducibility-pinning-nixpkgs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tutorials/towards-reproducibility-pinning-nixpkgs.rst b/source/tutorials/towards-reproducibility-pinning-nixpkgs.rst index 369d107..96a6cff 100644 --- a/source/tutorials/towards-reproducibility-pinning-nixpkgs.rst +++ b/source/tutorials/towards-reproducibility-pinning-nixpkgs.rst @@ -32,7 +32,7 @@ The simplest way to do this is to fetch the required nixpkgs version as a tarbal .. code:: nix - { pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/3590f02e7d5760e52072c1a729ee2250b5560746.tar.gz") {}; + { pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/3590f02e7d5760e52072c1a729ee2250b5560746.tar.gz") {} }: ...