summary refs log tree commit diff
path: root/pkgs/development/libraries/audio/rtaudio/default.nix
blob: 1df696c0ec6463b991029fef3dedd7b19f860e80 (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
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, libjack2,  alsaLib, rtmidi }:

stdenv.mkDerivation rec {
  version = "5.0.0";
  name = "rtaudio-${version}";

  src = fetchFromGitHub {
    owner = "thestk";
    repo = "rtaudio";
    rev = "${version}";
    sha256 = "0jkqnhc2pq31nmq4daxhmqdjgv2qi4ib27hwms2r5zhnmvvzlr67";
  };

  buildInputs = [ autoconf automake libtool libjack2 alsaLib rtmidi ];

  preConfigure = ''
    ./autogen.sh --no-configure
    ./configure
  '';

  meta = {
    description = "A set of C++ classes that provide a cross platform API for realtime audio input/output";
    homepage =  http://www.music.mcgill.ca/~gary/rtaudio/;
    license = stdenv.lib.licenses.mit;
    maintainers = [ stdenv.lib.maintainers.magnetophon ];
    platforms = with stdenv.lib.platforms; linux ++ darwin;
  };
}