From 7a9199115fa6612e0927381566e63663a69e98e1 Mon Sep 17 00:00:00 2001 From: Alexander Groleau Date: Wed, 9 Aug 2023 10:54:41 -0500 Subject: [PATCH] Update source/tutorials/learning-journey/packaging-existing-software.md Co-authored-by: Zach Mitchell, PhD --- .../tutorials/learning-journey/packaging-existing-software.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tutorials/learning-journey/packaging-existing-software.md b/source/tutorials/learning-journey/packaging-existing-software.md index e72bc11..57af13e 100644 --- a/source/tutorials/learning-journey/packaging-existing-software.md +++ b/source/tutorials/learning-journey/packaging-existing-software.md @@ -501,7 +501,7 @@ Nixpkgs `stdenv.mkDerivation` derivations are separated into [phases](https://ni You saw earlier how the `stdenv.mkDerivation` expected the project's `Makefile` to have an `install` target, and failed when it didn't. -To fix this, you defined a custom `installPhase`, containing instructions for copying the `icat` binary to the correct output location, in effect installing it. +To fix this, you defined a custom `installPhase` containing instructions for copying the `icat` binary to the correct output location, in effect installing it. Up to that point, the `stdenv.mkDerivation` automatically determined the `buildPhase` information for the `icat` package.