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
83 lines
2.0 KiB
Nix
83 lines
2.0 KiB
Nix
{
|
|
cmake,
|
|
fetchFromGitHub,
|
|
git,
|
|
gitUpdater,
|
|
fetchpatch,
|
|
lib,
|
|
nlohmann_json,
|
|
pkg-config,
|
|
python3,
|
|
stdenv,
|
|
testers,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "lcevcdec";
|
|
version = "4.0.1";
|
|
|
|
outputs = [
|
|
"out"
|
|
"lib"
|
|
"dev"
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "v-novaltd";
|
|
repo = "LCEVCdec";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-azY4xle2wwopT9qEHa4+nXPkGzscWz9tYof1qN7Nw8c=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace cmake/tools/version_files.py \
|
|
--replace-fail "args.git_version" '"${finalAttrs.version}"' \
|
|
--replace-fail "args.git_hash" '"${finalAttrs.src.rev}"' \
|
|
--replace-fail "args.git_date" '"1970-01-01"'
|
|
substituteInPlace cmake/templates/lcevc_dec.pc.in \
|
|
--replace-fail "@GIT_SHORT_VERSION@" "${finalAttrs.version}"
|
|
'';
|
|
|
|
env = {
|
|
includedir = "${placeholder "dev"}/include";
|
|
libdir = "${placeholder "out"}/lib";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
git
|
|
pkg-config
|
|
python3
|
|
];
|
|
|
|
buildInputs = [
|
|
nlohmann_json
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeFeature "VN_SDK_FFMPEG_LIBS_PACKAGE" "")
|
|
(lib.cmakeBool "VN_SDK_UNIT_TESTS" false)
|
|
(lib.cmakeBool "VN_SDK_SAMPLE_SOURCE" false)
|
|
(lib.cmakeBool "VN_SDK_JSON_CONFIG" true)
|
|
(lib.cmakeBool "VN_CORE_AVX2" stdenv.hostPlatform.avx2Support)
|
|
# Requires avx for checking on runtime
|
|
(lib.cmakeBool "VN_CORE_SSE" stdenv.hostPlatform.avxSupport)
|
|
(lib.cmakeBool "VN_SDK_SIMD" stdenv.hostPlatform.avxSupport)
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gitUpdater { };
|
|
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/v-novaltd/LCEVCdec";
|
|
description = "MPEG-5 LCEVC Decoder";
|
|
license = lib.licenses.bsd3Clear;
|
|
pkgConfigModules = [ "lcevc_dec" ];
|
|
maintainers = with lib.maintainers; [ jopejoe1 ];
|
|
# https://github.com/v-novaltd/LCEVCdec/blob/bf7e0d91c969502e90a925942510a1ca8088afec/cmake/modules/VNovaProject.cmake#L29
|
|
platforms = lib.platforms.aarch ++ lib.platforms.x86;
|
|
};
|
|
})
|