Use `executables` in evaluation to set executables to have in `/bin/`.

This commit is contained in:
Whovian NTSN 2024-06-18 05:00:03 -04:00
parent 22a6af519b
commit ba24cee243
3 changed files with 6 additions and 0 deletions

View File

@ -26,6 +26,8 @@ buildDotnetModule {
dotnetBuildFlags = [ "--framework net8.0" ];
dotnetInstallFlags = [ "--framework net8.0" ];
executables = [ "Test" ];
preFixup = ''
mv $out/bin/Test $out/bin/binaryobjectscanner
'';

View File

@ -27,6 +27,8 @@ buildDotnetModule {
dotnetBuildFlags = [ "--framework net8.0" ];
dotnetInstallFlags = [ "--framework net8.0" ];
executables = [ "irdkit" ];
meta = {
description = "Placeholder :)";
homepage = "https://github.com/Deterous/LibIRD";

View File

@ -26,6 +26,8 @@ buildDotnetModule {
dotnetBuildFlags = [ "--framework net8.0" ];
dotnetInstallFlags = [ "--framework net8.0" ];
executables = [ "SabreTools" ];
postFixup = ''
mv $out/bin/SabreTools $out/bin/sabretools
'';