2015-04-24 11:51:45 +01:00
|
|
|
{ stdenv, fetchurl, cmake, yasm
|
|
|
|
, debugSupport ? false # Run-time sanity checks (debugging)
|
|
|
|
, highbitdepthSupport ? false # false=8bits per channel, true=10/12bits per channel
|
|
|
|
, werrorSupport ? false # Warnings as errors
|
|
|
|
, ppaSupport ? false # PPA profiling instrumentation
|
|
|
|
, vtuneSupport ? false # Vtune profiling instrumentation
|
|
|
|
, custatsSupport ? false # Internal profiling of encoder work
|
|
|
|
, cliSupport ? true # Build standalone CLI application
|
|
|
|
, unittestsSupport ? false # Unit tests
|
|
|
|
}:
|
2014-11-03 00:14:44 +00:00
|
|
|
|
2015-04-24 11:51:45 +01:00
|
|
|
let
|
|
|
|
mkFlag = optSet: flag: if optSet then "-D${flag}=ON" else "-D${flag}=OFF";
|
|
|
|
inherit (stdenv) is64bit;
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "x265-${version}";
|
2016-03-12 21:24:06 +00:00
|
|
|
version = "1.9";
|
2015-04-24 11:51:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-02-07 12:18:48 +00:00
|
|
|
urls = [
|
|
|
|
"http://get.videolan.org/x265/x265_${version}.tar.gz"
|
|
|
|
"https://github.com/videolan/x265/archive/${version}.tar.gz"
|
|
|
|
];
|
2016-03-12 21:24:06 +00:00
|
|
|
sha256 = "1j0mbcf10aj6zi1nxql45f9817jd2ndcpd7x123sjmyr7q9m8iiy";
|
2015-04-24 11:51:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
sed -i 's/unknown/${version}/g' source/cmake/version.cmake
|
|
|
|
'';
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
(mkFlag debugSupport "CHECKED_BUILD")
|
|
|
|
"-DSTATIC_LINK_CRT=OFF"
|
|
|
|
(mkFlag (highbitdepthSupport && is64bit) "HIGH_BIT_DEPTH")
|
|
|
|
(mkFlag werrorSupport "WARNINGS_AS_ERRORS")
|
|
|
|
(mkFlag ppaSupport "ENABLE_PPA")
|
|
|
|
(mkFlag vtuneSupport "ENABLE_VTUNE")
|
|
|
|
(mkFlag custatsSupport "DETAILED_CU_STATS")
|
|
|
|
"-DENABLE_SHARED=ON"
|
|
|
|
(mkFlag cliSupport "ENABLE_CLI")
|
|
|
|
(mkFlag unittestsSupport "ENABLE_TESTS")
|
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
cd source
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake yasm ];
|
|
|
|
|
2015-12-04 13:42:32 +00:00
|
|
|
NIX_LDFLAGS = "-L${stdenv.cc.libc.out}/lib"; #outputs TODO: this is strange
|
|
|
|
|
2015-04-24 11:51:45 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library for encoding h.265/HEVC video streams";
|
|
|
|
homepage = http://x265.org;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ codyopel ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|