nixpkgs/pkgs/development/libraries/libcamera/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

98 lines
1.7 KiB
Nix
Raw Normal View History

2021-07-04 23:40:21 +02:00
{ stdenv
, fetchgit
, lib
, meson
, ninja
, pkg-config
2022-01-06 00:32:44 +01:00
, makeFontsConf
2021-07-04 23:40:21 +02:00
, boost
, gnutls
, openssl
2022-01-06 00:32:44 +01:00
, libdrm
2021-07-04 23:40:21 +02:00
, libevent
, libyaml
2021-07-04 23:40:21 +02:00
, lttng-ust
, gst_all_1
, gtest
, graphviz
, doxygen
, python3
, python3Packages
2022-01-06 00:32:44 +01:00
, systemd # for libudev
2021-07-04 23:40:21 +02:00
}:
stdenv.mkDerivation {
pname = "libcamera";
version = "unstable-2022-07-15";
2021-07-04 23:40:21 +02:00
src = fetchgit {
url = "https://git.libcamera.org/libcamera/libcamera.git";
rev = "e9b6b362820338d0546563444e7b1767f5c7044c";
hash = "sha256-geqFcMBHcVe7dPdVOal8V2pVItYUdoC+5isISqRG4Wc=";
2021-07-04 23:40:21 +02:00
};
postPatch = ''
patchShebangs utils/
'';
2021-11-29 09:17:05 +01:00
strictDeps = true;
2021-07-04 23:40:21 +02:00
buildInputs = [
# IPA and signing
gnutls
boost
# gstreamer integration
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
# cam integration
libevent
2022-01-06 00:32:44 +01:00
libdrm
# hotplugging
systemd
2021-07-04 23:40:21 +02:00
# lttng tracing
lttng-ust
2021-11-29 09:17:05 +01:00
# yamlparser
libyaml
2021-11-29 09:17:05 +01:00
gtest
2021-07-04 23:40:21 +02:00
];
nativeBuildInputs = [
meson
ninja
pkg-config
python3
python3Packages.jinja2
python3Packages.pyyaml
python3Packages.ply
python3Packages.sphinx
graphviz
doxygen
2021-11-29 09:17:05 +01:00
openssl
2021-07-04 23:40:21 +02:00
];
2022-01-06 00:32:44 +01:00
mesonFlags = [
"-Dv4l2=true"
"-Dqcam=disabled"
"-Dlc-compliance=disabled" # tries unconditionally to download gtest when enabled
];
2021-07-04 23:40:21 +02:00
# Fixes error on a deprecated declaration
NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
2022-01-06 00:32:44 +01:00
# Silence fontconfig warnings about missing config
FONTCONFIG_FILE = makeFontsConf { fontDirectories = []; };
2021-07-04 23:40:21 +02:00
meta = with lib; {
description = "An open source camera stack and framework for Linux, Android, and ChromeOS";
homepage = "https://libcamera.org";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ citadelcore ];
};
}