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
24 lines
698 B
Nix
24 lines
698 B
Nix
{ stdenv, fetchurl, autoconf, automake, libtool
|
|
, pkgconfig, alsaLib, ffmpeg, speex, ortp }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mediastreamer2-2.2.0-cvs20080207";
|
|
|
|
# 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";
|
|
}
|