nixpkgs/pkgs/applications/misc/mediainfo-gui/default.nix

32 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, libmediainfo, wxGTK
, desktop-file-utils, libSM, imagemagick }:
2014-12-18 21:06:09 +01:00
2015-01-12 20:13:15 +01:00
stdenv.mkDerivation rec {
version = "18.08.1";
2014-12-18 21:06:09 +01:00
name = "mediainfo-gui-${version}";
src = fetchurl {
url = "https://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
sha256 = "0rq2dczjq26g5i0ac8px7xmxjvqq4h0rzd97fy5824yb2c5ksxs9";
2014-12-18 21:06:09 +01:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libzen libmediainfo wxGTK desktop-file-utils libSM
imagemagick ];
2014-12-18 21:06:09 +01:00
sourceRoot = "./MediaInfo/Project/GNU/GUI/";
2017-11-08 11:33:04 +01:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
2014-12-18 21:06:09 +01: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.
'';
homepage = https://mediaarea.net/;
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = [ maintainers.devhell ];
2014-12-18 21:06:09 +01:00
};
}