Slight rewording of buildInputs

This commit is contained in:
Stéphan Kochen
2020-08-29 11:32:21 +02:00
parent 2681282af5
commit 05ab8b3d00
+1 -1
View File
@@ -85,7 +85,7 @@ in project.overrideAttrs (oldAttrs: {
# If your top-level package.json doesn't set a name, you can set one here. # If your top-level package.json doesn't set a name, you can set one here.
name = "myproject"; name = "myproject";
# Example of adding native dependencies to the environment. # Example of adding packages to the build environment.
# Especially dependencies with native modules may need a Python installation. # Especially dependencies with native modules may need a Python installation.
buildInputs = oldAttrs.buildInputs ++ [ pkgs.python3 ]; buildInputs = oldAttrs.buildInputs ++ [ pkgs.python3 ];