about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorBenno Bielmeier <nix@bbenno.com>2024-05-02 13:08:46 +0200
committerBenno Bielmeier <nix@bbenno.com>2024-05-02 13:08:46 +0200
commit51517cbfbc9d1164bdfebe1fff4b00a67e251ae0 (patch)
tree105f4bc2a1388c535a671fd10416d136058f2f40 /pkgs/applications
parentd32b6f14dd1a6d77adf4fca8679f58e07f9173aa (diff)
vcv-rack: fix `nix run` execution
`nix run nixpkgs#vcv-rack` assumes the main program named "vcv-rack" but
it actually it is "Rack".
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/vcv-rack/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/applications/audio/vcv-rack/default.nix b/pkgs/applications/audio/vcv-rack/default.nix
index c086436de09ff..8f107ee2cb9c3 100644
--- a/pkgs/applications/audio/vcv-rack/default.nix
+++ b/pkgs/applications/audio/vcv-rack/default.nix
@@ -250,6 +250,7 @@ stdenv.mkDerivation rec {
     # no-derivatives clause
     license = with licenses; [ gpl3Plus cc-by-nc-40 unfreeRedistributable ];
     maintainers = with maintainers; [ nathyong jpotier ddelabru ];
+    mainProgram = "Rack";
     platforms = platforms.linux;
   };
 }