ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
63 lines
1.5 KiB
Nix
63 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, gst_all_1
|
|
, ipu6-camera-hal
|
|
, libdrm
|
|
, libva
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "icamerasrc-${ipu6-camera-hal.ipuVersion}";
|
|
version = "unstable-2024-09-29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = "icamerasrc";
|
|
rev = "refs/tags/20240926_1446";
|
|
hash = "sha256-BpIZxkPmSVKqPntwBJjGmCaMSYFCEZHJa4soaMAJRWE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
preConfigure = ''
|
|
# https://github.com/intel/ipu6-camera-hal/issues/1
|
|
export CHROME_SLIM_CAMHAL=ON
|
|
# https://github.com/intel/icamerasrc/issues/22
|
|
export STRIP_VIRTUAL_CHANNEL_CAMHAL=ON
|
|
'';
|
|
|
|
buildInputs = [
|
|
gst_all_1.gstreamer
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-bad
|
|
ipu6-camera-hal
|
|
libdrm
|
|
libva
|
|
];
|
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
"-Wno-error"
|
|
# gstcameradeinterlace.cpp:55:10: fatal error: gst/video/video.h: No such file or directory
|
|
"-I${gst_all_1.gst-plugins-base.dev}/include/gstreamer-1.0"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = {
|
|
inherit (ipu6-camera-hal) ipuVersion;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "GStreamer Plugin for MIPI camera support through the IPU6/IPU6EP/IPU6SE on Intel Tigerlake/Alderlake/Jasperlake platforms";
|
|
homepage = "https://github.com/intel/icamerasrc/tree/icamerasrc_slim_api";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = [ ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|