mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
mkvtoolnix: 9.6.0 -> 9.8.0
- Update mkvtoolnix to v9.8.0 - Add a build dependency on drake, because it is not bundled with mkvtoolnix anymore since v9.8.0
This commit is contained in:
parent
1853f174d1
commit
e98aa7832c
@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchFromGitHub, pkgconfig, autoconf, automake
|
||||
, ruby, file, xdg_utils, gettext, expat, qt5, boost
|
||||
, drake, ruby, file, xdg_utils, gettext, expat, qt5, boost
|
||||
, libebml, zlib, libmatroska, libogg, libvorbis, flac
|
||||
, withGUI ? true
|
||||
}:
|
||||
@ -10,16 +10,16 @@ with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mkvtoolnix-${version}";
|
||||
version = "9.6.0";
|
||||
version = "9.8.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mbunkus";
|
||||
repo = "mkvtoolnix";
|
||||
rev = "release-${version}";
|
||||
sha256 = "14v6iclzkqxibzcdxr65bb5frmnsjyyly0d3lwv1gg7g1mkcw3jd";
|
||||
sha256 = "1hnk92ksgg290q4kwdl8jqrz7vzlwki4f85bb6kgdgzpjkblw76n";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig autoconf automake gettext ruby ];
|
||||
nativeBuildInputs = [ pkgconfig autoconf automake gettext drake ruby ];
|
||||
|
||||
buildInputs = [
|
||||
expat file xdg_utils boost libebml zlib libmatroska libogg
|
||||
@ -27,8 +27,8 @@ stdenv.mkDerivation rec {
|
||||
] ++ optional withGUI qt5.qtbase;
|
||||
|
||||
preConfigure = "./autogen.sh; patchShebangs .";
|
||||
buildPhase = "./drake -j $NIX_BUILD_CORES";
|
||||
installPhase = "./drake install -j $NIX_BUILD_CORES";
|
||||
buildPhase = "drake -j $NIX_BUILD_CORES";
|
||||
installPhase = "drake install -j $NIX_BUILD_CORES";
|
||||
|
||||
configureFlags = [
|
||||
"--enable-magic"
|
||||
@ -38,7 +38,6 @@ stdenv.mkDerivation rec {
|
||||
"--disable-profiling"
|
||||
"--disable-precompiled-headers"
|
||||
"--disable-static-qt"
|
||||
"--without-curl"
|
||||
"--with-gettext"
|
||||
(enableFeature withGUI "qt")
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user