2016-03-12 06:13:39 -08:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, libmediainfo, wxGTK
|
2018-02-24 18:23:58 -08:00
|
|
|
, desktop-file-utils, libSM, imagemagick }:
|
2014-12-18 12:06:09 -08:00
|
|
|
|
2015-01-12 11:13:15 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-05 17:40:14 -07:00
|
|
|
version = "20.03";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "mediainfo-gui";
|
2014-12-18 12:06:09 -08:00
|
|
|
src = fetchurl {
|
2017-10-11 01:13:00 -07:00
|
|
|
url = "https://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
|
2020-05-05 17:40:14 -07:00
|
|
|
sha256 = "1f1shnycf0f1fwka9k9s250l228xjkg0k4k73h8bpld8msighgnw";
|
2014-12-18 12:06:09 -08:00
|
|
|
};
|
|
|
|
|
2016-03-12 06:13:39 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2018-02-24 18:23:58 -08:00
|
|
|
buildInputs = [ libzen libmediainfo wxGTK desktop-file-utils libSM
|
2016-03-12 06:13:39 -08:00
|
|
|
imagemagick ];
|
2014-12-18 12:06:09 -08:00
|
|
|
|
|
|
|
sourceRoot = "./MediaInfo/Project/GNU/GUI/";
|
|
|
|
|
2017-11-08 02:33:04 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-03-12 06:13:39 -08:00
|
|
|
meta = with stdenv.lib; {
|
2014-12-18 12:06:09 -08:00
|
|
|
description = "Supplies technical and tag information about a video or audio file (GUI version)";
|
|
|
|
longDescription = ''
|
|
|
|
MediaInfo is a convenient unified display of the most relevant technical
|
|
|
|
and tag data for video and audio files.
|
|
|
|
'';
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://mediaarea.net/";
|
2016-03-12 06:13:39 -08:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.devhell ];
|
2014-12-18 12:06:09 -08:00
|
|
|
};
|
|
|
|
}
|