mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
mkvtoolnix: 4.4.0
svn path=/nixpkgs/trunk/; revision=25925
This commit is contained in:
parent
188b3c00ba
commit
87418d034b
40
pkgs/applications/video/mkvtoolnix/default.nix
Normal file
40
pkgs/applications/video/mkvtoolnix/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ stdenv, fetchurl
|
||||
, libmatroska
|
||||
, flac
|
||||
, libvorbis
|
||||
, file
|
||||
, boost
|
||||
, lzo
|
||||
, xdg_utils
|
||||
, expat
|
||||
, wxGTK
|
||||
, zlib
|
||||
, ruby
|
||||
, gettext
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mkvtoolnix-4.4.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.bunkus.org/videotools/mkvtoolnix/sources/${name}.tar.bz2";
|
||||
sha256 = "0apgmah1d4dh5x1phr4n5vgwmy0w1nym9pydzh4kdgcs167l8n6l";
|
||||
};
|
||||
|
||||
buildInputs = [ libmatroska flac libvorbis file boost lzo xdg_utils expat wxGTK zlib ruby gettext ];
|
||||
|
||||
configureFlags = "--with-boost-libdir=${boost}/lib";
|
||||
buildPhase = ''
|
||||
ruby ./drake
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
ruby ./drake install
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Matroska library";
|
||||
homepage = http://dl.matroska.org/downloads/libmatroska;
|
||||
};
|
||||
}
|
||||
|
@ -3806,6 +3806,8 @@ let
|
||||
|
||||
ming = callPackage ../development/libraries/ming { };
|
||||
|
||||
mkvtoolnix = callPackage ../applications/video/mkvtoolnix { };
|
||||
|
||||
mlt = callPackage ../development/libraries/mlt {
|
||||
qt = qt4;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user