fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchFromGitHub, cmake, alsaLib, libjack2-git, libpulseaudio }:
2
3stdenv.mkDerivation rec {
4 version = "1.0.1";
5 name = "libsoundio-${version}";
6
7 src = fetchFromGitHub {
8 owner = "andrewrk";
9 repo = "libsoundio";
10 rev = "${version}";
11 sha256 = "1nlsn517rqvhc1scfw96ky7ja6dj2l96j4qjrphb5z63zxxi06pf";
12 };
13
14 buildInputs = [ cmake alsaLib libjack2-git libpulseaudio ];
15
16 meta = with stdenv.lib; {
17 description = "Cross platform audio input and output";
18 homepage = http://libsound.io/;
19 license = licenses.mit;
20 platforms = platforms.unix;
21 maintainers = [ maintainers.andrewrk ];
22 };
23}