summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorIvarWithoutBones <ivar.scholten@protonmail.com>2022-01-12 00:03:02 +0100
committerIvarWithoutBones <ivar.scholten@protonmail.com>2022-01-12 00:23:53 +0100
commitfcbd42974214dacba9b283166fe8ead0a04644a2 (patch)
treec06b36170511afd5c4f4fcade99c3de0747e43c2 /doc
parentb0b40f863b4122705ac1f0fc25c2639728669cf9 (diff)
downloadnixpkgs-fcbd42974214dacba9b283166fe8ead0a04644a2.tar
nixpkgs-fcbd42974214dacba9b283166fe8ead0a04644a2.tar.gz
nixpkgs-fcbd42974214dacba9b283166fe8ead0a04644a2.tar.bz2
nixpkgs-fcbd42974214dacba9b283166fe8ead0a04644a2.tar.lz
nixpkgs-fcbd42974214dacba9b283166fe8ead0a04644a2.tar.xz
nixpkgs-fcbd42974214dacba9b283166fe8ead0a04644a2.tar.zst
nixpkgs-fcbd42974214dacba9b283166fe8ead0a04644a2.zip
buildDotnetModule: wrap executables in preFixup
Not doing this used to break wrapGAppsHook as gappsWrapperArgs is set in preFixup, but it was used in installPhase
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/dotnet.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/dotnet.section.md b/doc/languages-frameworks/dotnet.section.md
index 88e1a0b2959..f7af28a1677 100644
--- a/doc/languages-frameworks/dotnet.section.md
+++ b/doc/languages-frameworks/dotnet.section.md
@@ -84,7 +84,7 @@ To package Dotnet applications, you can use `buildDotnetModule`. This has simila
      <ProjectReference Include="../foo/bar.fsproj" />
      <PackageReference Include="bar" Version="*" Condition=" '$(ContinuousIntegrationBuild)'=='true' "/>
   ```
-* `executables` is used to specify which executables get wrapped to `$out/bin`, relative to `$out/lib/$pname`. If this is unset, all executables generated will get installed. If you do not want to install any, set this to `[]`.
+* `executables` is used to specify which executables get wrapped to `$out/bin`, relative to `$out/lib/$pname`. If this is unset, all executables generated will get installed. If you do not want to install any, set this to `[]`. This gets done in the `preFixup` phase.
 * `runtimeDeps` is used to wrap libraries into `LD_LIBRARY_PATH`. This is how dotnet usually handles runtime dependencies.
 * `buildType` is used to change the type of build. Possible values are `Release`, `Debug`, etc. By default, this is set to `Release`.
 * `dotnet-sdk` is useful in cases where you need to change what dotnet SDK is being used.