2015-02-17 07:01:10 +00:00
|
|
|
{ stdenv, fetchurl, yasm, autoconf, automake, libtool }:
|
2010-04-30 22:47:09 +01:00
|
|
|
|
2015-02-17 07:01:10 +00:00
|
|
|
with stdenv.lib;
|
2010-04-30 22:47:09 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "xvidcore";
|
2018-01-28 14:29:42 +00:00
|
|
|
version = "1.3.5";
|
|
|
|
|
2010-04-30 22:47:09 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://downloads.xvid.org/downloads/${pname}-${version}.tar.bz2";
|
2018-01-28 14:29:42 +00:00
|
|
|
sha256 = "1d0hy1w9sn6491a3vhyf3vmhq4xkn6yd4ralx1191s6qz5wz483w";
|
2010-04-30 22:47:09 +01:00
|
|
|
};
|
|
|
|
|
2013-07-04 06:06:22 +01:00
|
|
|
preConfigure = ''
|
2015-02-17 07:01:10 +00:00
|
|
|
# Configure script is not in the root of the source directory
|
2013-07-04 06:06:22 +01:00
|
|
|
cd build/generic
|
2015-02-17 07:01:10 +00:00
|
|
|
'' + optionalString stdenv.isDarwin ''
|
|
|
|
# Undocumented darwin hack
|
2013-07-04 06:06:22 +01:00
|
|
|
substituteInPlace configure --replace "-no-cpp-precomp" ""
|
|
|
|
'';
|
2010-04-30 22:58:47 +01:00
|
|
|
|
2015-02-17 07:01:10 +00:00
|
|
|
configureFlags = [ ]
|
|
|
|
# Undocumented darwin hack (assembly is probably disabled due to an
|
|
|
|
# issue with nasm, however yasm is now used)
|
|
|
|
++ optional stdenv.isDarwin "--enable-macosx_module --disable-assembly";
|
2011-07-25 15:19:10 +01:00
|
|
|
|
2015-02-17 07:01:10 +00:00
|
|
|
nativeBuildInputs = [ ]
|
|
|
|
++ optional (!stdenv.isDarwin) yasm;
|
2013-07-04 05:55:32 +01:00
|
|
|
|
2015-02-17 07:01:10 +00:00
|
|
|
buildInputs = [ ]
|
|
|
|
# Undocumented darwin hack
|
|
|
|
++ optionals stdenv.isDarwin [ autoconf automake libtool ];
|
|
|
|
|
|
|
|
# Don't remove static libraries (e.g. 'libs/*.a') on darwin. They're needed to
|
|
|
|
# compile ffmpeg (and perhaps other things).
|
|
|
|
postInstall = optionalString (!stdenv.isDarwin) ''
|
2013-07-04 05:55:32 +01:00
|
|
|
rm $out/lib/*.a
|
|
|
|
'';
|
2018-01-28 14:29:42 +00:00
|
|
|
|
2015-02-17 07:01:10 +00:00
|
|
|
meta = {
|
2010-04-30 22:47:09 +01:00
|
|
|
description = "MPEG-4 video codec for PC";
|
2015-02-17 07:01:10 +00:00
|
|
|
homepage = https://www.xvid.com/;
|
2013-07-14 00:08:03 +01:00
|
|
|
license = licenses.gpl2;
|
2015-02-17 07:01:10 +00:00
|
|
|
maintainers = with maintainers; [ codyopel lovek323 ];
|
2013-07-04 06:06:22 +01:00
|
|
|
platforms = platforms.all;
|
2010-04-30 22:47:09 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|