d37b43f434
Semi-automatic update. These checks were performed: - built on NixOS - found 5.0.0 with grep in /nix/store/sxxwa9mma9933vxb4w3d2szxjqx5w773-rtaudio-5.0.0 - found 5.0.0 in filename of file in /nix/store/sxxwa9mma9933vxb4w3d2szxjqx5w773-rtaudio-5.0.0 cc "@magnetophon"
28 lines
824 B
Nix
28 lines
824 B
Nix
{ 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;
|
|
};
|
|
}
|