diff options
Diffstat (limited to 'pkgs/gearmulator/default.nix')
-rw-r--r-- | pkgs/gearmulator/default.nix | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/pkgs/gearmulator/default.nix b/pkgs/gearmulator/default.nix new file mode 100644 index 0000000..e391f6b --- /dev/null +++ b/pkgs/gearmulator/default.nix @@ -0,0 +1,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; + }; +} |