Use `executables` in evaluation to set executables to have in `/bin/`.
This commit is contained in:
parent
22a6af519b
commit
ba24cee243
|
@ -26,6 +26,8 @@ buildDotnetModule {
|
|||
dotnetBuildFlags = [ "--framework net8.0" ];
|
||||
dotnetInstallFlags = [ "--framework net8.0" ];
|
||||
|
||||
executables = [ "Test" ];
|
||||
|
||||
preFixup = ''
|
||||
mv $out/bin/Test $out/bin/binaryobjectscanner
|
||||
'';
|
||||
|
|
|
@ -27,6 +27,8 @@ buildDotnetModule {
|
|||
dotnetBuildFlags = [ "--framework net8.0" ];
|
||||
dotnetInstallFlags = [ "--framework net8.0" ];
|
||||
|
||||
executables = [ "irdkit" ];
|
||||
|
||||
meta = {
|
||||
description = "Placeholder :)";
|
||||
homepage = "https://github.com/Deterous/LibIRD";
|
||||
|
|
|
@ -26,6 +26,8 @@ buildDotnetModule {
|
|||
dotnetBuildFlags = [ "--framework net8.0" ];
|
||||
dotnetInstallFlags = [ "--framework net8.0" ];
|
||||
|
||||
executables = [ "SabreTools" ];
|
||||
|
||||
postFixup = ''
|
||||
mv $out/bin/SabreTools $out/bin/sabretools
|
||||
'';
|
||||
|
|
Loading…
Reference in New Issue