1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

libsoundio: init at 1.0.1

This commit is contained in:
Andrew Kelley 2015-09-03 16:56:17 -07:00
parent 5286878998
commit 18f1842fe0
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, cmake, alsaLib, libjack2-git, libpulseaudio }:
stdenv.mkDerivation rec {
version = "1.0.1";
name = "libsoundio-${version}";
src = fetchFromGitHub {
owner = "andrewrk";
repo = "libsoundio";
rev = "${version}";
sha256 = "1nlsn517rqvhc1scfw96ky7ja6dj2l96j4qjrphb5z63zxxi06pf";
};
buildInputs = [ cmake alsaLib libjack2-git libpulseaudio ];
meta = with stdenv.lib; {
description = "Cross platform audio input and output";
homepage = http://libsound.io/;
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.andrewrk ];
};
}

View file

@ -6992,6 +6992,8 @@ let
libserialport = callPackage ../development/libraries/libserialport { };
libsoundio = callPackage ../development/libraries/libsoundio { };
libgtop = callPackage ../development/libraries/libgtop {};
libLAS = callPackage ../development/libraries/libLAS { };