2010-04-30 09:33:47 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "snapshot-20100429-2245";
|
2008-05-22 01:18:45 +01:00
|
|
|
name = "x264-${version}";
|
|
|
|
|
2010-04-30 09:33:47 +01:00
|
|
|
src = fetchurl {
|
2008-05-22 01:18:45 +01:00
|
|
|
url = "ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-${version}.tar.bz2";
|
2010-04-30 09:33:47 +01:00
|
|
|
sha256 = "16b24mc63zyp4h4fqyvgzbdclnhpay4l72yfqzwnzsnlby94zwcj";
|
2008-05-22 01:18:45 +01:00
|
|
|
};
|
|
|
|
|
2010-04-30 09:33:47 +01:00
|
|
|
patchPhase = ''
|
2010-04-30 11:47:53 +01:00
|
|
|
sed -i s,/bin/bash,${stdenv.shell}, configure version.sh
|
2010-04-30 09:33:47 +01:00
|
|
|
'';
|
2008-10-14 14:35:25 +01:00
|
|
|
|
2010-04-30 09:33:47 +01:00
|
|
|
configureFlags = [ "--disable-asm" "--enable-shared" ];
|
2008-05-22 01:18:45 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "library for encoding H264/AVC video streams";
|
|
|
|
homepage = http://www.videolan.org/developers/x264.html;
|
|
|
|
license = "GPL";
|
|
|
|
};
|
|
|
|
}
|