nixpkgs/pkgs/development/libraries/xvidcore/default.nix

48 lines
1.4 KiB
Nix
Raw Normal View History

2015-02-17 07:01:10 +00:00
{ stdenv, fetchurl, yasm, autoconf, automake, libtool }:
2015-02-17 07:01:10 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
2015-02-17 07:01:10 +00:00
name = "xvidcore-${version}";
2016-04-12 11:17:59 +00:00
version = "1.3.4";
src = fetchurl {
url = "http://downloads.xvid.org/downloads/${name}.tar.bz2";
2016-04-12 11:17:59 +00:00
sha256 = "1xwbmp9wqshc0ckm970zdpi0yvgqxlqg0s8bkz98mnr8p2067bsz";
};
preConfigure = ''
2015-02-17 07:01:10 +00:00
# Configure script is not in the root of the source directory
cd build/generic
2015-02-17 07:01:10 +00:00
'' + optionalString stdenv.isDarwin ''
# Undocumented darwin hack
substituteInPlace configure --replace "-no-cpp-precomp" ""
'';
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";
2015-02-17 07:01:10 +00:00
nativeBuildInputs = [ ]
++ optional (!stdenv.isDarwin) yasm;
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) ''
rm $out/lib/*.a
'';
2015-02-17 07:01:10 +00:00
meta = {
description = "MPEG-4 video codec for PC";
2015-02-17 07:01:10 +00:00
homepage = https://www.xvid.com/;
license = licenses.gpl2;
2015-02-17 07:01:10 +00:00
maintainers = with maintainers; [ codyopel lovek323 ];
platforms = platforms.all;
};
}