diff --git a/doc/languages-frameworks/nim.section.md b/doc/languages-frameworks/nim.section.md index 49870b166154..9e3c6716285b 100644 --- a/doc/languages-frameworks/nim.section.md +++ b/doc/languages-frameworks/nim.section.md @@ -93,7 +93,7 @@ The `buildNimPackage` and `buildNimSbom` functions generate flags and additional ```nix pkgs.nitter.overrideNimAttrs { # using a different source which has different dependencies from the standard package - src = pkgs.fetchFromGithub { + src = pkgs.fetchFromGitHub { # … }; # new lock file generated from the source diff --git a/pkgs/by-name/co/commitizen-go/package.nix b/pkgs/by-name/co/commitizen-go/package.nix index 48f98b635113..adbb000c9653 100644 --- a/pkgs/by-name/co/commitizen-go/package.nix +++ b/pkgs/by-name/co/commitizen-go/package.nix @@ -8,7 +8,7 @@ buildGoModule rec { pname = "commitizen-go"; version = "1.0.3"; - # we can't obtain the commit hash when using fetchFromGithub + # we can't obtain the commit hash when using fetchFromGitHub commit_revision = "unspecified (nix build)"; src = fetchFromGitHub { diff --git a/pkgs/servers/home-assistant/custom-components/README.md b/pkgs/servers/home-assistant/custom-components/README.md index 3820328e2ed4..81edbb043fd7 100644 --- a/pkgs/servers/home-assistant/custom-components/README.md +++ b/pkgs/servers/home-assistant/custom-components/README.md @@ -28,7 +28,7 @@ versions into the Python environment. buildHomeAssistantComponent { # owner, domain, version - src = fetchFromGithub { + src = fetchFromGitHub { # owner, repo, rev, hash };