about summary refs log tree commit diff
path: root/pkgs/applications/audio/munt/default.nix
blob: 93a9ce25854449903c514458ca53f7bfcc4c2581 (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
{ lib
, mkDerivation
, stdenv
, fetchFromGitHub
, makeDesktopItem
, cmake
, pkg-config
, qtbase
, glib
, alsa-lib
, withJack ? stdenv.hostPlatform.isUnix, jack
}:

let
  mainProgram = "mt32emu-qt";
in
mkDerivation rec {
  pname = "munt";
  version = "2.5.0";

  src = fetchFromGitHub {
    owner = pname;
    repo = pname;
    rev = "munt_${lib.replaceChars [ "." ] [ "_" ] version}";
    sha256 = "1lknq2a72gv1ddhzr7f967wpa12lh805jj4gjacdnamgrc1h22yn";
  };

  dontFixCmake = true;

  nativeBuildInputs = [ cmake pkg-config ];

  buildInputs = [ qtbase glib ]
    ++ lib.optional stdenv.hostPlatform.isLinux alsa-lib
    ++ lib.optional withJack jack;

  postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
    mkdir $out/Applications
    mv $out/bin/${mainProgram}.app $out/Applications/
    ln -s $out/{Applications/${mainProgram}.app/Contents/MacOS,bin}/${mainProgram}
  '';

  meta = with lib; {
    inherit mainProgram;
    description = "Multi-platform software synthesiser emulating Roland MT-32, CM-32L, CM-64 and LAPC-I devices";
    homepage = "http://munt.sourceforge.net/";
    license = with licenses; [ lgpl21 gpl3 ];
    platforms = platforms.all;
    maintainers = with maintainers; [ OPNA2608 ];
  };
}