2022-04-29 17:12:04 +01:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, libmediainfo, wxGTK30-gtk3
|
2018-02-25 02:23:58 +00:00
|
|
|
, desktop-file-utils, libSM, imagemagick }:
|
2014-12-18 20:06:09 +00:00
|
|
|
|
2015-01-12 19:13:15 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2022-04-29 17:12:04 +01:00
|
|
|
version = "22.03";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mediainfo-gui";
|
2014-12-18 20:06:09 +00:00
|
|
|
src = fetchurl {
|
2017-10-11 09:13:00 +01:00
|
|
|
url = "https://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
|
2022-04-29 17:12:04 +01:00
|
|
|
sha256 = "sha256-Yjb5Kh1XqBdLPzDqbd6Kq1ONj2IPcoIk2FE3MWmAK+Q=";
|
2014-12-18 20:06:09 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2022-04-29 17:12:04 +01:00
|
|
|
buildInputs = [ libmediainfo wxGTK30-gtk3 desktop-file-utils libSM imagemagick ];
|
2014-12-18 20:06:09 +00:00
|
|
|
|
|
|
|
sourceRoot = "./MediaInfo/Project/GNU/GUI/";
|
|
|
|
|
2017-11-08 10:33:04 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-12-18 20:06:09 +00: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-04-01 02:11:51 +01:00
|
|
|
homepage = "https://mediaarea.net/";
|
2016-03-12 14:13:39 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.devhell ];
|
2014-12-18 20:06:09 +00:00
|
|
|
};
|
|
|
|
}
|