python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / xvidcore / default.nix
blob57f2403cfe3f9b8e48b97795b14b9d173f4616bb
1 { lib, stdenv, fetchurl, yasm, autoconf, automake, libtool }:
3 with lib;
4 stdenv.mkDerivation rec {
5   pname = "xvidcore";
6   version = "1.3.7";
8   src = fetchurl {
9     url = "https://downloads.xvid.com/downloads/${pname}-${version}.tar.bz2";
10     sha256 = "1xyg3amgg27zf7188kss7y248s0xhh1vv8rrk0j9bcsd5nasxsmf";
11   };
13   preConfigure = ''
14     # Configure script is not in the root of the source directory
15     cd build/generic
16   '' + optionalString stdenv.isDarwin ''
17     # Undocumented darwin hack
18     substituteInPlace configure --replace "-no-cpp-precomp" ""
19   '';
21   configureFlags = [ ]
22     # Undocumented darwin hack (assembly is probably disabled due to an
23     # issue with nasm, however yasm is now used)
24     ++ optional stdenv.isDarwin "--enable-macosx_module --disable-assembly";
26   nativeBuildInputs = [ ]
27     ++ optional (!stdenv.isDarwin) yasm;
29   buildInputs = [ ]
30     # Undocumented darwin hack
31     ++ optionals stdenv.isDarwin [ autoconf automake libtool ];
33   # Don't remove static libraries (e.g. 'libs/*.a') on darwin.  They're needed to
34   # compile ffmpeg (and perhaps other things).
35   postInstall = optionalString (!stdenv.isDarwin) ''
36     rm $out/lib/*.a
37   '';
39   meta = {
40     description = "MPEG-4 video codec for PC";
41     homepage    = "https://www.xvid.com/";
42     license     = licenses.gpl2;
43     maintainers = with maintainers; [ codyopel lovek323 ];
44     platforms   = platforms.all;
45   };