nixpkgs/pkgs/applications/video/mkvtoolnix/default.nix

69 lines
1.9 KiB
Nix
Raw Normal View History

2019-02-16 05:18:50 +01:00
{ stdenv, fetchFromGitLab, pkgconfig, autoconf, automake, libiconv, drake
, ruby, docbook_xsl, file, xdg_utils, gettext, expat, boost, libebml, zlib
2020-09-16 18:55:51 +02:00
, fmt, libmatroska, libogg, libvorbis, flac, libxslt, cmark, pcre2
2016-03-07 19:24:24 +01:00
, withGUI ? true
2018-02-28 23:27:43 +01:00
, qtbase ? null
, qtmultimedia ? null
2019-08-15 17:28:53 +02:00
, wrapQtAppsHook ? null
}:
2019-08-15 17:28:53 +02:00
assert withGUI -> qtbase != null && qtmultimedia != null && wrapQtAppsHook != null;
2016-03-07 19:24:24 +01:00
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "mkvtoolnix";
2020-10-17 13:47:20 +02:00
version = "51.0.0";
2017-12-22 03:58:10 +01:00
src = fetchFromGitLab {
2018-02-28 23:27:43 +01:00
owner = "mbunkus";
repo = "mkvtoolnix";
rev = "release-${version}";
2020-10-17 13:47:20 +02:00
sha256 = "06k2slgac0fhgypmdriwdc5s09mry22vxk316ixfj5sv3irwn7wc";
};
2018-02-28 23:27:43 +01:00
nativeBuildInputs = [
pkgconfig autoconf automake gettext
drake ruby docbook_xsl libxslt
];
2015-05-11 12:20:12 +02:00
2014-08-29 15:06:23 +02:00
buildInputs = [
2019-02-16 05:18:50 +01:00
expat file xdg_utils boost libebml zlib fmt
2020-09-16 18:55:51 +02:00
libmatroska libogg libvorbis flac cmark pcre2
2018-02-28 23:27:43 +01:00
] ++ optional stdenv.isDarwin libiconv
2019-08-15 17:28:53 +02:00
++ optionals withGUI [ qtbase qtmultimedia wrapQtAppsHook ];
2016-03-13 00:43:29 +01:00
preConfigure = "./autogen.sh; patchShebangs .";
buildPhase = "drake -j $NIX_BUILD_CORES";
installPhase = "drake install -j $NIX_BUILD_CORES";
2016-03-07 19:24:24 +01:00
configureFlags = [
"--enable-magic"
"--enable-optimization"
"--with-boost-libdir=${boost.out}/lib"
2016-03-07 19:24:24 +01:00
"--disable-debug"
"--disable-profiling"
"--disable-precompiled-headers"
"--disable-static-qt"
"--with-gettext"
"--with-docbook-xsl-root=${docbook_xsl}/share/xml/docbook-xsl"
2016-03-07 19:24:24 +01:00
(enableFeature withGUI "qt")
];
CXXFLAGS = optional stdenv.cc.isClang "-std=c++17";
2019-09-18 05:41:28 +02:00
2019-08-15 17:28:53 +02:00
dontWrapQtApps = true;
postFixup = optionalString withGUI ''
wrapQtApp $out/bin/mkvtoolnix-gui
'';
2015-05-11 12:20:12 +02:00
meta = with stdenv.lib; {
description = "Cross-platform tools for Matroska";
homepage = "http://www.bunkus.org/videotools/mkvtoolnix/";
2016-03-07 19:24:24 +01:00
license = licenses.gpl2;
maintainers = with maintainers; [ codyopel rnhmjoj ];
2017-03-13 22:20:26 +01:00
platforms = platforms.linux
++ optionals (!withGUI) platforms.darwin;
};
}