Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
791 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchurl,
ilbc,
linphonePackages,
pkg-config,
}:
stdenv.mkDerivation rec {
pname = "msilbc";
version = "2.1.2";
src = fetchurl {
url = "mirror://savannah/linphone/plugins/sources/${pname}-${version}.tar.gz";
sha256 = "07j02y994ybh274fp7ydjvi76h34y2c34ndwjpjfcwwr03b48cfp";
};
propagatedBuildInputs = [
ilbc
linphonePackages.mediastreamer2
];
nativeBuildInputs = [ pkg-config ];
configureFlags = [
"ILBC_LIBS=ilbc"
"ILBC_CFLAGS=-I${ilbc}/include"
"MEDIASTREAMER_LIBS=mediastreamer"
"MEDIASTREAMER_CFLAGS=-I${linphonePackages.mediastreamer2}/include"
];
meta = with lib; {
description = "Mediastreamer plugin for the iLBC audio codec";
platforms = platforms.linux;
license = licenses.gpl2;
};
}