about summary refs log tree commit diff
path: root/pkgs/applications/audio/dexed/default.nix
blob: d7e8b0fd238036170bd9bfc5e2c9b68c2053fa5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{ stdenv
, lib
, fetchFromGitHub
, cmake
, pkg-config
, libX11
, libXrandr
, libXinerama
, libXext
, libXcursor
, freetype
, alsa-lib
, libjack2
, Accelerate
, Cocoa
, WebKit
, MetalKit
, simd
, DiscRecording
, CoreAudioKit
}:

stdenv.mkDerivation rec {
  pname = "dexed";
  version = "unstable-2022-07-09";

  src = fetchFromGitHub {
    owner = "asb2m10";
    repo = "dexed";
    rev = "2c036316bcd512818aa9cc8129767ad9e0ec7132";
    fetchSubmodules = true;
    sha256 = "sha256-6buvA72YRlGjHWLPEZMr45lYYG6ZY+IWmylcHruX27g=";
  };

  postPatch = ''
    # needs special setup on Linux, dunno if it can work on Darwin
    # https://github.com/NixOS/nixpkgs/issues/19098
    sed -i -e '/juce::juce_recommended_lto_flags/d' Source/CMakeLists.txt
  '';

  nativeBuildInputs = [
    cmake
    pkg-config
  ];

  buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
    libX11
    libXext
    libXcursor
    libXinerama
    libXrandr
    freetype
    alsa-lib
    libjack2
  ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
    Accelerate
    Cocoa
    WebKit
    MetalKit
    simd
    DiscRecording
    CoreAudioKit
  ];

  # JUCE insists on only dlopen'ing these
  NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isLinux (toString [
    "-lX11"
    "-lXext"
    "-lXcursor"
    "-lXinerama"
    "-lXrandr"
    "-ljack"
  ]);

  installPhase = let
    vst3Dir = if stdenv.hostPlatform.isDarwin then "$out/Library/Audio/Plug-Ins/VST3" else "$out/lib/vst3";
    # this one's a guess, don't know where ppl have agreed to put them yet
    clapDir = if stdenv.hostPlatform.isDarwin then "$out/Library/Audio/Plug-Ins/CLAP" else "$out/lib/clap";
    auDir = "$out/Library/Audio/Plug-Ins/Components";
  in ''
    runHook preInstall

  '' + (if stdenv.hostPlatform.isDarwin then ''
    mkdir -p $out/{Applications,bin}
    mv Source/Dexed_artefacts/Release/Standalone/Dexed.app $out/Applications/
    ln -s $out/{Applications/Dexed.app/Contents/MacOS,bin}/Dexed
  '' else ''
    install -Dm755 {Source/Dexed_artefacts/Release/Standalone,$out/bin}/Dexed
  '') + ''
    mkdir -p ${vst3Dir} ${clapDir}
    mv Source/Dexed_artefacts/Release/VST3/* ${vst3Dir}
    mv Source/Dexed_artefacts/Release/CLAP/* ${clapDir}
  '' + lib.optionalString stdenv.hostPlatform.isDarwin ''
    mkdir -p ${auDir}
    mv Source/Dexed_artefacts/Release/AU/* ${auDir}
  '' + ''

    runHook postInstall
  '';

  meta = with lib; {
    description = "DX7 FM multi platform/multi format plugin";
    mainProgram = "Dexed";
    homepage = "https://asb2m10.github.io/dexed";
    license = licenses.gpl3Only;
    platforms = platforms.all;
    maintainers = with maintainers; [ OPNA2608 ];
  };
}