1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 01:51:24 +00:00
nixpkgs/pkgs/applications/video/mkvtoolnix/default.nix

57 lines
1.6 KiB
Nix
Raw Normal View History

2017-03-13 21:20:26 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, autoconf, automake, libiconv
, drake, ruby, docbook_xsl, file, xdg_utils, gettext, expat, qt5, boost
, libebml, zlib, libmatroska, libogg, libvorbis, flac, libxslt
2016-03-07 18:24:24 +00:00
, withGUI ? true
}:
2015-05-11 11:20:12 +01:00
assert withGUI -> qt5 != null;
2016-03-07 18:24:24 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
2014-08-29 14:06:23 +01:00
name = "mkvtoolnix-${version}";
2017-06-30 18:01:25 +01:00
version = "13.0.0";
2016-07-09 16:14:01 +01:00
src = fetchFromGitHub {
owner = "mbunkus";
repo = "mkvtoolnix";
rev = "release-${version}";
2017-06-30 18:01:25 +01:00
sha256 = "0dz86fzv19wknd8p31nnx2imj80v7m944ssapp8fmq9hkc36m777";
};
nativeBuildInputs = [ pkgconfig autoconf automake gettext drake ruby docbook_xsl libxslt ];
2015-05-11 11:20:12 +01:00
2014-08-29 14:06:23 +01:00
buildInputs = [
expat file xdg_utils boost libebml zlib libmatroska libogg
libvorbis flac
2017-03-13 21:20:26 +00:00
]
++ optional stdenv.isDarwin libiconv
++ optionals withGUI [qt5.qtbase qt5.qtmultimedia];
2016-03-12 23:43:29 +00:00
preConfigure = "./autogen.sh; patchShebangs .";
buildPhase = "drake -j $NIX_BUILD_CORES";
installPhase = "drake install -j $NIX_BUILD_CORES";
2016-03-07 18:24:24 +00:00
configureFlags = [
"--enable-magic"
"--enable-optimization"
"--with-boost-libdir=${boost.out}/lib"
2016-03-07 18:24:24 +00: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 18:24:24 +00:00
(enableFeature withGUI "qt")
];
2015-05-11 11:20:12 +01:00
meta = with stdenv.lib; {
description = "Cross-platform tools for Matroska";
2016-03-07 18:24:24 +00:00
homepage = http://www.bunkus.org/videotools/mkvtoolnix/;
license = licenses.gpl2;
maintainers = with maintainers; [ codyopel fuuzetsu rnhmjoj ];
2017-03-13 21:20:26 +00:00
platforms = platforms.linux
++ optionals (!withGUI) platforms.darwin;
};
}