25 boostWithZstd = boost.overrideAttrs (old: {
26 buildInputs = old.buildInputs ++ [ zstd ];
29 stdenv.mkDerivation rec {
33 src = fetchFromGitHub {
37 hash = "sha256-j/tGkR73skZiU+bP4j6aZ5CxkbIcHtqKcaUTgNvj0C8=";
38 fetchSubmodules = true;
41 # SSE is enabled by default
42 cmakeFlags = lib.optional (!stdenv.hostPlatform.isx86_64) "-DOpenMVS_USE_SSE=OFF";
67 mv $out/bin/OpenMVS/* $out/bin
68 rmdir $out/bin/OpenMVS
80 description = "Open Multi-View Stereo reconstruction library";
81 homepage = "https://github.com/cdcseacave/openMVS";
82 license = lib.licenses.agpl3Only;
83 platforms = lib.platforms.unix;
84 maintainers = with lib.maintainers; [ bouk ];