mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
47 lines
907 B
Nix
47 lines
907 B
Nix
{ stdenv, fetchurl
|
|
, libmatroska
|
|
, flac
|
|
, libvorbis
|
|
, file
|
|
, boost
|
|
, xdg_utils
|
|
, expat
|
|
, wxGTK
|
|
, zlib
|
|
, ruby
|
|
, gettext
|
|
, pkgconfig
|
|
, curl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "7.1.0";
|
|
name = "mkvtoolnix-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.bunkus.org/videotools/mkvtoolnix/sources/${name}.tar.xz";
|
|
sha256 = "06xqy4f7gi1xj0yqb6y1wmxwvsxfxal2plfsbl33dkwd0srixj06";
|
|
};
|
|
|
|
buildInputs = [
|
|
libmatroska flac libvorbis file boost xdg_utils
|
|
expat wxGTK zlib ruby gettext pkgconfig curl
|
|
];
|
|
|
|
configureFlags = "--with-boost-libdir=${boost}/lib";
|
|
buildPhase = ''
|
|
ruby ./drake
|
|
'';
|
|
|
|
installPhase = ''
|
|
ruby ./drake install
|
|
'';
|
|
|
|
meta = {
|
|
description = "Cross-platform tools for Matroska";
|
|
homepage = http://www.bunkus.org/videotools/mkvtoolnix/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
|
};
|
|
}
|