7f5b839524
`selectVersion ./foo "bar"' instead of `import ./foo/bar.nix'. * Replaced `with args' with formal function arguments in several packages. * Renamed several files to `default.nix'. As a general rule, version numbers should only be included in the filename when there is a reason to keep multiple versions of a package in Nixpkgs. Otherwise, it just makes it harder to update the package. svn path=/nixpkgs/trunk/; revision=18403
28 lines
747 B
Nix
28 lines
747 B
Nix
{ stdenv, fetchurl, ilbc, mediastreamer, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "msilbc-2.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.savannah.gnu.org/releases/linphone/plugins/sources/${name}.tar.gz";
|
|
sha256 = "0ifydb7qmpync56l4hbrp36n5wrb7gadb76isp643s6wsg7l743j";
|
|
};
|
|
|
|
patchPhase = "sed -i /MS_FILTER_SET_FMTP/d ilbc.c";
|
|
|
|
propagatedBuildInputs = [ilbc mediastreamer];
|
|
|
|
buildInputs = [pkgconfig];
|
|
|
|
buildPhase = ''
|
|
cc -fPIC -c -pthread -o ilbc.o ilbc.c `pkg-config --cflags mediastreamer`
|
|
echo "next"
|
|
cc `pkg-config --libs mediastreamer` -shared -pthread -o libilbc.so
|
|
'';
|
|
|
|
installPhase = ''
|
|
ensureDir $out/lib/mediastreamer/plugins
|
|
cp libilbc.so $out/lib/mediastreamer/plugins
|
|
'';
|
|
}
|