lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 22 lines 591 B view raw
1{ stdenv, fetchurl, ilbc, mediastreamer, pkgconfig }: 2 3stdenv.mkDerivation rec { 4 name = "msilbc-2.0.3"; 5 6 src = fetchurl { 7 url = "mirror://savannah/linphone/plugins/sources/${name}.tar.gz"; 8 sha256 = "125yadpc0w1q84839dadin3ahs0gxxfas0zmc4c18mjmf58dmm7d"; 9 }; 10 11 propagatedBuildInputs = [ ilbc mediastreamer ]; 12 nativeBuildInputs = [ pkgconfig ]; 13 14 configureFlags = [ 15 "ILBC_LIBS=ilbc" "ILBC_CFLAGS=-I${ilbc}/include" 16 "MEDIASTREAMER_LIBS=mediastreamer" "MEDIASTREAMER_CFLAGS=-I${mediastreamer}/include" 17 ]; 18 19 meta = { 20 platforms = stdenv.lib.platforms.linux; 21 }; 22}