mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #9651 from andrewrk/libsoundio
libsoundio: init at 1.0.1
This commit is contained in:
commit
dc00f56d24
2 changed files with 25 additions and 0 deletions
23
pkgs/development/libraries/libsoundio/default.nix
Normal file
23
pkgs/development/libraries/libsoundio/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue