2015-05-11 12:20:12 +02:00
|
|
|
{ stdenv, fetchurl, gettext, pkgconfig, ruby
|
|
|
|
, boost, expat, file, flac, libebml, libmatroska, libogg, libvorbis, xdg_utils, zlib
|
|
|
|
# pugixml (not packaged)
|
|
|
|
, buildConfig ? "all"
|
|
|
|
, withGUI ? false, qt5 ? null # Disabled for now until upstream issues are resolved
|
|
|
|
, legacyGUI ? true, wxGTK ? null
|
|
|
|
# For now both qt5 and wxwidgets gui's are enabled, if wxwidgets is disabled the
|
|
|
|
# build system doesn't install desktop entries, icons, etc...
|
2011-02-12 21:18:53 +01:00
|
|
|
}:
|
|
|
|
|
2015-05-11 12:20:12 +02:00
|
|
|
let
|
|
|
|
inherit (stdenv.lib) enableFeature optional;
|
|
|
|
in
|
|
|
|
|
|
|
|
assert withGUI -> qt5 != null;
|
|
|
|
assert legacyGUI -> wxGTK != null;
|
2015-01-10 14:46:05 +01:00
|
|
|
|
2011-02-12 21:18:53 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-08-29 15:06:23 +02:00
|
|
|
name = "mkvtoolnix-${version}";
|
2015-09-02 23:24:35 +02:00
|
|
|
version = "8.3.0";
|
2011-02-12 21:18:53 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-01-21 21:05:31 +01:00
|
|
|
url = "http://www.bunkus.org/videotools/mkvtoolnix/sources/${name}.tar.xz";
|
2015-09-02 23:24:35 +02:00
|
|
|
sha256 = "0dzwmwa76y4nhb5brp5a1kxgxjr71czd8vj218qmrlwm54i85gc7";
|
2011-02-12 21:18:53 +01:00
|
|
|
};
|
|
|
|
|
2015-05-11 12:20:12 +02:00
|
|
|
patchPhase = ''
|
|
|
|
patchShebangs ./rake.d/
|
|
|
|
patchShebangs ./Rakefile
|
|
|
|
# Force ruby encoding to use UTF-8 or else when enabling qt5 the Rakefile may
|
|
|
|
# fail with `invalid byte sequence in US-ASCII' due to UTF-8 characters
|
|
|
|
# This workaround replaces an arbitrary comment in the drake file
|
|
|
|
sed -e 's,#--,Encoding.default_external = Encoding::UTF_8,' -i ./drake
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-boost-libdir=${boost.lib}/lib"
|
|
|
|
"--without-curl"
|
|
|
|
] ++ (
|
|
|
|
if (withGUI || legacyGUI) then [
|
|
|
|
"--with-mkvtoolnix-gui"
|
|
|
|
"--enable-gui"
|
|
|
|
(enableFeature withGUI "qt")
|
|
|
|
(enableFeature legacyGUI "wxwidgets")
|
|
|
|
] else [
|
|
|
|
"--disable-gui"
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
nativeBuildInputs = [ gettext pkgconfig ruby ];
|
|
|
|
|
2014-08-29 15:06:23 +02:00
|
|
|
buildInputs = [
|
2015-05-11 12:20:12 +02:00
|
|
|
boost expat file flac libebml libmatroska libogg libvorbis xdg_utils zlib
|
|
|
|
] ++ optional withGUI qt5
|
|
|
|
++ optional legacyGUI wxGTK;
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2011-02-12 21:18:53 +01:00
|
|
|
|
|
|
|
buildPhase = ''
|
2015-05-11 12:20:12 +02:00
|
|
|
./drake
|
2011-02-12 21:18:53 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2015-05-11 12:20:12 +02:00
|
|
|
./drake install
|
2011-02-12 21:18:53 +01:00
|
|
|
'';
|
|
|
|
|
2015-05-11 12:20:12 +02:00
|
|
|
meta = with stdenv.lib; {
|
2011-02-12 21:22:55 +01:00
|
|
|
description = "Cross-platform tools for Matroska";
|
|
|
|
homepage = http://www.bunkus.org/videotools/mkvtoolnix/;
|
2015-05-11 12:20:12 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ codyopel fuuzetsu ];
|
|
|
|
platforms = platforms.unix;
|
2011-02-12 21:18:53 +01:00
|
|
|
};
|
|
|
|
}
|