nixpkgs/pkgs/development/libraries/msilbc/default.nix
Ryan Mulligan d4f0c2373d msilbc: 2.0.3 -> 2.1.2
Semi-automatic update. These checks were performed:

- built on NixOS
- found 2.1.2 with grep in /nix/store/382shdj4qs6hl916ycw7ai4c7xz1sd40-msilbc-2.1.2
- found 2.1.2 in filename of file in /nix/store/382shdj4qs6hl916ycw7ai4c7xz1sd40-msilbc-2.1.2
2018-02-27 07:48:21 -08:00

23 lines
591 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 = {
platforms = stdenv.lib.platforms.linux;
};
}