mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
6059831148
{lib}mediainfo{-gui}: 0.7.80 -> 0.7.81
30 lines
1016 B
Nix
30 lines
1016 B
Nix
{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.7.81";
|
|
name = "mediainfo-${version}";
|
|
src = fetchurl {
|
|
url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
|
|
sha256 = "1aah8y4kqhghqhcfm6ydgf3hj6q05dllfh0m1lbaij0y8yrrwz07";
|
|
};
|
|
|
|
buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo zlib ];
|
|
|
|
sourceRoot = "./MediaInfo/Project/GNU/CLI/";
|
|
|
|
configureFlags = [ "--with-libmediainfo=${libmediainfo}" ];
|
|
preConfigure = "sh autogen.sh";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Supplies technical and tag information about a video or audio file";
|
|
longDescription = ''
|
|
MediaInfo is a convenient unified display of the most relevant technical
|
|
and tag data for video and audio files.
|
|
'';
|
|
homepage = http://mediaarea.net/;
|
|
license = licenses.bsd2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.devhell ];
|
|
};
|
|
}
|