vcv-rack: fix nix run execution

`nix run nixpkgs#vcv-rack` assumes the main program named "vcv-rack" but
it actually it is "Rack".
This commit is contained in:
Benno Bielmeier 2024-05-02 13:08:46 +02:00
parent d32b6f14dd
commit 51517cbfbc

View File

@ -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;
};
}