Commit 51517cbf authored by Benno Bielmeier's avatar Benno Bielmeier
Browse files

vcv-rack: fix `nix run` execution

`nix run nixpkgs#vcv-rack` assumes the main program named "vcv-rack" but
it actually it is "Rack".
parent d32b6f14
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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;
  };
}