mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
52 lines
1.7 KiB
Nix
52 lines
1.7 KiB
Nix
{ lib, stdenv, fetchurl, yasm, autoconf, automake, libtool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xvidcore";
|
|
version = "1.3.7";
|
|
|
|
src = fetchurl {
|
|
url = "https://downloads.xvid.com/downloads/${pname}-${version}.tar.bz2";
|
|
sha256 = "1xyg3amgg27zf7188kss7y248s0xhh1vv8rrk0j9bcsd5nasxsmf";
|
|
};
|
|
|
|
preConfigure = ''
|
|
# Configure script is not in the root of the source directory
|
|
cd build/generic
|
|
'' + lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
# Undocumented darwin hack
|
|
substituteInPlace configure --replace "-no-cpp-precomp" ""
|
|
'';
|
|
|
|
configureFlags = [ ]
|
|
# Undocumented darwin hack (assembly is probably disabled due to an
|
|
# issue with nasm, however yasm is now used)
|
|
++ lib.optional stdenv.hostPlatform.isDarwin "--enable-macosx_module --disable-assembly";
|
|
|
|
nativeBuildInputs = [ ]
|
|
++ lib.optional (!stdenv.hostPlatform.isDarwin) yasm;
|
|
|
|
buildInputs = [ ]
|
|
# Undocumented darwin hack
|
|
++ lib.optionals stdenv.hostPlatform.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 = lib.optionalString (!stdenv.hostPlatform.isDarwin) ''
|
|
rm $out/lib/*.a
|
|
'';
|
|
|
|
# Dependants of xvidcore don't know to look in bin for dependecies. Link them
|
|
# in lib so other depedants of xvidcore can find the dlls.
|
|
postFixup = lib.optionalString stdenv.hostPlatform.isMinGW ''
|
|
ln -s $out/bin/*.dll $out/lib
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "MPEG-4 video codec for PC";
|
|
homepage = "https://www.xvid.com/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ codyopel lovek323 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|