3b274caaac
Signed-off-by: Shea Levy <shea@shealevy.com>
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{stdenv, fetchurl, bash, yasm, which, perl}:
|
|
|
|
let version = "1.2.0";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "libvpx-" + version;
|
|
|
|
src = fetchurl { # sadly, there's no official tarball for this release
|
|
url = "ftp://ftp.archlinux.org/other/libvpx/libvpx-${version}.tar.xz";
|
|
sha256 = "02k9ylswgr2hvjqmg422fa9ggym0g94gzwb14nnckly698rvjc50";
|
|
};
|
|
|
|
patchPhase = ''
|
|
sed -e 's,/bin/bash,${bash}/bin/bash,' -i configure build/make/version.sh \
|
|
examples/gen_example_code.sh build/make/gen_asm_deps.sh
|
|
sed -e '/enable linux/d' -i configure
|
|
'';
|
|
|
|
buildInputs = [ yasm which perl ];
|
|
|
|
preConfigure = ''
|
|
mkdir -p build
|
|
cd build
|
|
substituteInPlace make/configure.sh --replace "-arch x86_64" "-march=x86-64"
|
|
'';
|
|
|
|
configureScript = "../configure";
|
|
configureFlags =
|
|
[ "--disable-install-srcs" "--disable-install-docs" "--disable-examples"
|
|
"--enable-vp8" "--enable-runtime-cpu-detect" "--enable-pic" ]
|
|
# --enable-shared is only supported on ELF
|
|
++ stdenv.lib.optional (!stdenv.isDarwin) "--enable-shared";
|
|
|
|
installPhase = ''
|
|
make quiet=false DIST_DIR=$out install
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "VP8 video encoder";
|
|
homepage = http://code.google.com/p/webm;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|
|
|