mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
25 lines
693 B
Nix
25 lines
693 B
Nix
{ stdenv, fetchurl, ilbc, mediastreamer, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "msilbc-2.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/linphone/plugins/sources/${name}.tar.gz";
|
|
sha256 = "07j02y994ybh274fp7ydjvi76h34y2c34ndwjpjfcwwr03b48cfp";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ilbc mediastreamer ];
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
configureFlags = [
|
|
"ILBC_LIBS=ilbc" "ILBC_CFLAGS=-I${ilbc}/include"
|
|
"MEDIASTREAMER_LIBS=mediastreamer" "MEDIASTREAMER_CFLAGS=-I${mediastreamer}/include"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Mediastreamer plugin for the iLBC audio codec";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|