From 2e2e9eae97de84231bd74a0855d945ecceb61318 Mon Sep 17 00:00:00 2001 From: Nicolas Mattia Date: Sun, 24 Nov 2019 20:25:21 +0100 Subject: [PATCH] Fix typo in error message --- nix/sources.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/sources.nix b/nix/sources.nix index 65ed4bb..520203d 100644 --- a/nix/sources.nix +++ b/nix/sources.nix @@ -25,7 +25,7 @@ let The niv type "builtin-tarball" will soon be deprecated. You should instead use `builtin = true`. - $ niv modify -a type=tarball -a builtins=true + $ niv modify -a type=tarball -a builtin=true '' builtins_fetchTarball { inherit (spec) url sha256; }; @@ -36,7 +36,7 @@ let The niv type "builtin-url" will soon be deprecated. You should instead use `builtin = true`. - $ niv modify -a type=file -a builtins=true + $ niv modify -a type=file -a builtin=true '' (builtins_fetchurl { inherit (spec) url sha256; });