summary refs log tree commit diff
path: root/pkgs/development/libraries/audio/rtaudio/default.nix
blob: 326572996b487a093b60476b76b3696ee02bb230 (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 = "4.1.2";
  name = "rtaudio-${version}";

  src = fetchFromGitHub {
    owner = "thestk";
    repo = "rtaudio";
    rev = "${version}";
    sha256 = "09j84l9l3q0g238z5k89rm8hgk0i1ir8917an7amq474nwjp80pq";
  };

  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;
  };
}