From 6a5b279f326d46d87fb014bfb6bfdbe93495f5e0 Mon Sep 17 00:00:00 2001 From: Valentin Gagarin Date: Mon, 13 Nov 2023 20:39:48 +0100 Subject: [PATCH] fix typo Co-authored-by: Silvan Mosberger --- source/guides/recipes/sharing-dependencies.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/guides/recipes/sharing-dependencies.md b/source/guides/recipes/sharing-dependencies.md index 1b0f208df..48ced7650 100644 --- a/source/guides/recipes/sharing-dependencies.md +++ b/source/guides/recipes/sharing-dependencies.md @@ -13,7 +13,7 @@ Use the `inputsFrom` attribute to `pkgs.mkShell`: # default.nix let pkgs = import {}; - build = pkgs.callpackage ./build.nix {}; + build = pkgs.callPackage ./build.nix {}; in { inherit build;