Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.3 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchurl,
autoreconfHook,
pkg-config,
libzen,
zlib,
# Whether to enable resolving URLs via libcurl
curlSupport ? true,
curl,
}:
stdenv.mkDerivation rec {
pname = "libmediainfo";
version = "25.09";
src = fetchurl {
url = "https://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz";
hash = "sha256-hWLo6gPir4veJ/ZteaD1c4WbjxMZPsEVq/EPc1sxOhI=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [ zlib ] ++ lib.optionals curlSupport [ curl ];
propagatedBuildInputs = [ libzen ];
sourceRoot = "MediaInfoLib/Project/GNU/Library";
postPatch = lib.optionalString (stdenv.cc.targetPrefix != "") ''
substituteInPlace configure.ac \
--replace "pkg-config " "${stdenv.cc.targetPrefix}pkg-config "
'';
configureFlags = [
"--enable-shared"
]
++ lib.optionals curlSupport [
"--with-libcurl"
];
enableParallelBuilding = true;
postInstall = ''
install -vD -m 644 libmediainfo.pc "$out/lib/pkgconfig/libmediainfo.pc"
'';
meta = with lib; {
description = "Shared library for mediainfo";
homepage = "https://mediaarea.net/";
changelog = "https://mediaarea.net/MediaInfo/ChangeLog";
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = [ maintainers.devhell ];
};
}