Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
60 lines
1.3 KiB
Nix
60 lines
1.3 KiB
Nix
{
|
|
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 ];
|
|
};
|
|
}
|