Skip to content

Commit

Permalink
fix(reaper): use stable wine
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtnvgr committed Apr 11, 2024
1 parent 67862a9 commit e27d9dd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions modules/desktop/apps/reaper/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@ let
name = "reaper";
executable = "${pkgs.reaper}/bin/reaper";

tricks = [ "d3d9" "mfc42" "vcrun2019" ];
wine = winePkg;

tricks = [ "mfc42" "vcrun2019" ];

isWinBin = false;

Expand Down Expand Up @@ -192,7 +194,7 @@ in {

config = mkIf cfg.enable {
home-manager.users.${user} = { lib, ... }: {
home.packages = with pkgs; [ reaper-fixed yabridge ];
home.packages = with pkgs; [ reaper-fixed yabridge-fixed ];

# TODO: remove .wvst* lookups
home.file.".config/yabridgectl/config.toml".text = ''
Expand All @@ -206,7 +208,7 @@ in {
'';

home.activation.yabridge-sync = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
$DRY_RUN_CMD ${pkgs.yabridgectl}/bin/yabridgectl sync -p -n $VERBOSE_ARG
$DRY_RUN_CMD ${yabridgectl-fixed}/bin/yabridgectl sync -p -n $VERBOSE_ARG
'';

# Reaper MIDI notes colormap
Expand Down

0 comments on commit e27d9dd

Please sign in to comment.