nixpkgs/pkgs/development/libraries/mediastreamer/2.2.0-cvs20080207.nix
Eelco Dolstra 94d7d1fdbb * Got rid of all --disable-static flags; they're redundant now.
* Also a bunch of style cleanups (tabs, with args, ...).

svn path=/nixpkgs/branches/stdenv-updates/; revision=15235
2009-04-21 23:18:09 +00:00

23 lines
615 B
Nix

args: with args;
stdenv.mkDerivation rec {
name = "mediastreamer2-" + version;
# This url is not related to mediastreamer. fetchcvs doesn't work on my laptop,
# so I've created cvs snapshot and put it to my server.
src = fetchurl {
url = "http://www.loegria.net/misc/" + name + ".tar.bz2";
sha256 = "1nmvyqh4x3nsw4qbj754jwagj9ia183kvp8valdr7m44my0sw5p1";
};
buildInputs = [automake libtool autoconf pkgconfig];
propagatedBuildInputs = [alsaLib ffmpeg speex ortp];
preConfigure = "./autogen.sh";
patches = [ ./h264.patch ./plugins.patch ];
configureFlags = "--enable-external-ortp";
}