From 1abf401a7541eb7f609a5dda8d83784dcc013dd6 Mon Sep 17 00:00:00 2001 From: con-f-use Date: Sat, 20 May 2023 13:08:24 +0200 Subject: [PATCH] =?UTF-8?q?typo:=20"in=20order"=C2=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- content/posts/building-nix-derivations-manually.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/building-nix-derivations-manually.md b/content/posts/building-nix-derivations-manually.md index 276bd00..b3d8caa 100644 --- a/content/posts/building-nix-derivations-manually.md +++ b/content/posts/building-nix-derivations-manually.md @@ -22,7 +22,7 @@ by adding `setupCompilerEnvironmentPhase` and overriding many phases. The way `nix-build` typically builds packages with the generic builder is documented in the [`stdenv` chapter][stdenv-docs] of the nixpkgs documentation. -More or less, it runs [various "phases"][phases] in order in order to build the +More or less, it runs [various "phases"][phases] in order to build the package. This is roughly analogous to the `build()`, `check()`, etc functions in an Arch Linux or Alpine Linux `PKGBUILD` file.