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
94 lines
2.0 KiB
Nix
94 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
cmake,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
versionCheckHook,
|
|
nix-update-script,
|
|
boost,
|
|
ffmpeg,
|
|
glslang,
|
|
llvmPackages,
|
|
ncnn,
|
|
spdlog,
|
|
vulkan-headers,
|
|
vulkan-loader,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "video2x";
|
|
version = "6.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "k4yt3x";
|
|
repo = "video2x";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-DSsfGAkPOtqqj0FA1N33O+OYmv+CMUsrvmh5SrnF7eA=";
|
|
fetchSubmodules = false;
|
|
leaveDotGit = true;
|
|
postFetch = ''
|
|
pushd $out
|
|
git reset --hard HEAD
|
|
|
|
# Fetch the dependencies that nixpkgs cannot provide (non-recursive)
|
|
git submodule update --init third_party/librealesrgan_ncnn_vulkan
|
|
git submodule update --init third_party/librealcugan_ncnn_vulkan
|
|
git submodule update --init third_party/librife_ncnn_vulkan
|
|
|
|
# Cleanup
|
|
rm -rf .git
|
|
|
|
popd
|
|
'';
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/fsutils.cpp \
|
|
--replace-fail '/usr/share/video2x' '${placeholder "out"}/share/video2x'
|
|
'';
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
glslang
|
|
];
|
|
|
|
buildInputs = [
|
|
boost
|
|
ffmpeg
|
|
ncnn
|
|
spdlog
|
|
vulkan-headers
|
|
vulkan-loader
|
|
]
|
|
++ lib.optionals stdenv.cc.isClang [
|
|
llvmPackages.openmp
|
|
];
|
|
|
|
cmakeFlags = [
|
|
# Don't build the libvideo2x shared library, we only need the CLI tool
|
|
(lib.cmakeBool "BUILD_SHARED_LIBS" false)
|
|
];
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
|
|
versionCheckProgramArg = "--version";
|
|
doInstallCheck = true;
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "AI-powered video upscaling tool";
|
|
changelog = "https://github.com/k4yt3x/video2x/releases/tag/${finalAttrs.version}/CHANGELOG.md";
|
|
homepage = "https://github.com/k4yt3x/video2x";
|
|
license = lib.licenses.agpl3Plus;
|
|
platforms = [ "x86_64-linux" ];
|
|
mainProgram = "video2x";
|
|
maintainers = [ lib.maintainers.matteopacini ];
|
|
};
|
|
})
|