aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/gearmulator/default.nix
blob: e391f6b47cadcbee46e032bb332b76d8f22f2dee (plain)
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
{
  alsa-lib,
  cmake,
  fetchFromGitHub,
  fontconfig,
  freeglut,
  freetype,
  lib,
  libX11,
  libXcomposite,
  libXcursor,
  libXext,
  libXinerama,
  libXrandr,
  lv2,
  mesa,
  pkg-config,
  stdenv
}:

stdenv.mkDerivation rec {
  pname = "gearmulator";
  version = "1.4.1";

  src = fetchFromGitHub {
    owner = "dsp56300";
    repo = pname;
    tag = version;
    hash = "sha256-JnXTTtxF5jHPaU+d558JwlGo/QjKHtVuCqel5iaBBCk=";
    fetchSubmodules = true;
  };

  nativeBuildInputs = [
    cmake
    pkg-config
  ];

  buildInputs = [
    alsa-lib
    fontconfig
    freeglut
    freetype
    libX11
    libXcomposite
    libXcursor
    libXext
    libXinerama
    libXrandr
    lv2
    mesa
  ];

  meta = {
    description = "Emulation of Motorola 56300 family DSP synths";
    homepage = "https://github.com/dsp56300/gearmulator";
    license = lib.licenses.gpl3;
    platforms = lib.platforms.all;
  };
}