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" ]; dotnetBuildFlags = [ "--framework net8.0" ];
dotnetInstallFlags = [ "--framework net8.0" ]; dotnetInstallFlags = [ "--framework net8.0" ];
executables = [ "Test" ];
preFixup = '' preFixup = ''
mv $out/bin/Test $out/bin/binaryobjectscanner mv $out/bin/Test $out/bin/binaryobjectscanner
''; '';

View File

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

View File

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