diff --git a/doc/bootstrap-no-flake.md b/doc/bootstrap-no-flake.md index 2def1296..897f0876 100644 --- a/doc/bootstrap-no-flake.md +++ b/doc/bootstrap-no-flake.md @@ -9,7 +9,7 @@ let organistSrc = builtins.fetchTarball "https://github.com/nickel-lang/organist/archive/main.tar.gz"; organist = pkgs.callPackage "${organistSrc}/lib/lib.nix" {inherit organistSrc;}; in - (organist.importNcl {baseDir = ./.;}).shells.default + (organist.importOrganist {baseDir = ./.;}).shells.default ``` And then use `nix develop -f shell.nix` as usual. Note that this will not use nixpkgs and Nickel from Organist's flake.lock. @@ -22,5 +22,5 @@ let organistSrc = builtins.fetchTarball "https://github.com/nickel-lang/organist/archive/main.tar.gz"; organist = ((import flake-compat) {src = organistSrc;}).defaultNix.lib.${builtins.currentSystem}; in - (organist.importNcl {baseDir = ./.;}).shells.default + (organist.importOrganist {baseDir = ./.;}).shells.default ``` diff --git a/lib/lib.nix b/lib/lib.nix index be1f8ce7..6ce734c7 100644 --- a/lib/lib.nix +++ b/lib/lib.nix @@ -133,7 +133,7 @@ else value; # Call Nickel on a given Nickel expression with the inputs declared in it. - # See importNcl for details about the flakeInputs parameter. + # See importOrganist for details about the flakeInputs parameter. callNickel = { /* : [String] diff --git a/lib/nix-interop/derivation.ncl b/lib/nix-interop/derivation.ncl index 4c703ed9..c4f991e2 100644 --- a/lib/nix-interop/derivation.ncl +++ b/lib/nix-interop/derivation.ncl @@ -218,7 +218,7 @@ in | optional | Version, system - | doc "The system to build the package on. Defaults to the system used by importNcl." + | doc "The system to build the package on. Defaults to the system used by importOrganist." | NullOr System | default = null,