3
0
Fork 0
forked from mirrors/nixpkgs

Added mkvtoolnix-cli = mkvtoolnix without GUI dependencies.

This commit is contained in:
koral 2015-01-10 14:46:05 +01:00
parent 57090412cb
commit 29d7fa6525
2 changed files with 10 additions and 2 deletions

View file

@ -6,6 +6,7 @@
, boost
, xdg_utils
, expat
, withGUI ? true
, wxGTK
, zlib
, ruby
@ -14,6 +15,8 @@
, curl
}:
assert withGUI -> wxGTK != null;
stdenv.mkDerivation rec {
version = "7.5.0";
name = "mkvtoolnix-${version}";
@ -25,8 +28,8 @@ stdenv.mkDerivation rec {
buildInputs = [
libmatroska flac libvorbis file boost xdg_utils
expat wxGTK zlib ruby gettext pkgconfig curl
];
expat zlib ruby gettext pkgconfig curl
] ++ stdenv.lib.optional withGUI wxGTK;
configureFlags = "--with-boost-libdir=${boost.lib}/lib";
buildPhase = ''

View file

@ -6441,6 +6441,11 @@ let
mkvtoolnix = callPackage ../applications/video/mkvtoolnix { };
mkvtoolnix-cli = mkvtoolnix.override {
withGUI = false;
wxGTK = null;
};
mlt-qt4 = callPackage ../development/libraries/mlt {
qt = qt4;
};