2008-02-11 00:00:58 +01:00
|
|
|
{stdenv, fetchurl}:
|
2007-10-22 02:51:40 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-02-11 00:00:58 +01:00
|
|
|
name = "ffmpeg-svn-pre-r11901";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/ffmpeg-svn-r11901.tar.bz2;
|
|
|
|
sha256 = "0l5207gnfaz57pvlxpxyjphyz0mp9plnxzd0aghy0nz3hmqh4rs7";
|
2007-12-04 23:06:13 +01:00
|
|
|
};
|
2007-10-22 02:51:40 +02:00
|
|
|
# !!! Hm, what are the legal consequences of --enable-gpl?
|
|
|
|
configureFlags = "--enable-shared --enable-pp --enable-gpl --disable-ffserver --disable-ffplay";
|
|
|
|
}
|