79 lines
1.6 KiB
Nix
79 lines
1.6 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
, gnumake
|
|
, pkg-config
|
|
, xxd
|
|
|
|
, v4l-utils
|
|
, nlohmann_json
|
|
, ffmpegSupport ? true
|
|
, ffmpeg
|
|
, libcameraSupport ? true
|
|
, libcamera
|
|
, rtspSupport ? false
|
|
, live555
|
|
, webrtcSupport ? false
|
|
, openssl
|
|
|
|
, lib
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "camera-streamer";
|
|
version = "0.2.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ayufan";
|
|
repo = "camera-streamer";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
hash = "sha256-8vV8BMFoDeh22I1/qxk6zttJROaD/lrThBxXHZSPpT4=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
patches = [
|
|
./0001-Disable-libdatachannel.patch
|
|
];
|
|
|
|
# Second replacement fixes literal newline in generated version.h.
|
|
postPatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace '/usr/local/bin' '/bin' \
|
|
--replace 'echo "#define' 'echo -e "#define'
|
|
'';
|
|
|
|
env.NIX_CFLAGS_COMPILE = builtins.toString [
|
|
"-Wno-error=stringop-overflow"
|
|
"-Wno-error=format"
|
|
"-Wno-format"
|
|
"-Wno-format-security"
|
|
"-Wno-error=unused-result"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
gnumake
|
|
pkg-config
|
|
xxd
|
|
];
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
buildInputs = [ nlohmann_json v4l-utils ]
|
|
++ (lib.optional ffmpegSupport ffmpeg)
|
|
++ (lib.optional libcameraSupport libcamera)
|
|
++ (lib.optional rtspSupport live555)
|
|
++ (lib.optional webrtcSupport openssl);
|
|
|
|
installFlags = [ "DESTDIR=${builtins.placeholder "out"}" ];
|
|
preInstall = "mkdir -p $out/bin";
|
|
|
|
meta = with lib; {
|
|
description = "High-performance low-latency camera streamer for Raspberry Pi's";
|
|
website = "https://github.com/ayufan/camera-streamer";
|
|
license = licenses.gpl3Only;
|
|
};
|
|
})
|
|
|