x264: 20170731-2245 -> 20190517-2245; add myself as maintainer

- yasm has been replaced by nasm
- both 10-bit and 8-bit are in the same binary now

- patchPhase replaced with postPatch to allow patching with overrides
- enableParallelBuilding enabled, long build and doesn't seem to cause
issues
- dev output added
This commit is contained in:
Tadeo Kondrak 2019-05-18 11:01:43 -06:00
parent 66c091c52c
commit fd87a29453
No known key found for this signature in database
GPG Key ID: C4654C621CD5277C

View File

@ -1,36 +1,37 @@
{stdenv, fetchurl, yasm, enable10bit ? false}: { stdenv, fetchurl, nasm }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "20170731-2245"; pname = "x264";
name = "x264-${version}"; version = "20190517-2245";
src = fetchurl { src = fetchurl {
url = "https://download.videolan.org/x264/snapshots/x264-snapshot-${version}-stable.tar.bz2"; url = "https://download.videolan.org/x264/snapshots/x264-snapshot-${version}-stable.tar.bz2";
sha256 = "01sgk1ps4qfifdnblwa3fxnd8ah6n6zbmfc1sy09cgqcdgzxgj0z"; sha256 = "1xv41z04km3rf374xk3ny7v8ibr211ph0j5am0909ln63mphc48f";
}; };
patchPhase = '' postPatch = ''
sed -i s,/bin/bash,${stdenv.shell}, configure version.sh patchShebangs .
''; '';
outputs = [ "out" "lib" ]; # leaving 52 kB of headers enableParallelBuilding = true;
outputs = [ "out" "lib" "dev" ];
preConfigure = '' preConfigure = ''
# `AS' is set to the binutils assembler, but we need yasm # `AS' is set to the binutils assembler, but we need nasm
unset AS unset AS
''; '';
configureFlags = [ "--enable-shared" ] configureFlags = [ "--enable-shared" ]
++ stdenv.lib.optional (!stdenv.isi686) "--enable-pic" ++ stdenv.lib.optional (!stdenv.isi686) "--enable-pic";
++ stdenv.lib.optional (enable10bit) "--bit-depth=10";
buildInputs = [ yasm ]; nativeBuildInputs = [ nasm ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Library for encoding H264/AVC video streams"; description = "Library for encoding H264/AVC video streams";
homepage = http://www.videolan.org/developers/x264.html; homepage = http://www.videolan.org/developers/x264.html;
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = [ maintainers.spwhitt ]; maintainers = with maintainers; [ spwhitt tadeokondrak ];
}; };
} }