nixpkgs/pkgs/by-name/ti/tiscamera/package.nix

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

136 lines
3.1 KiB
Nix
Raw Normal View History

2018-06-10 21:57:42 +00:00
{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
2022-06-15 20:20:59 +00:00
, runtimeShell
, catch2
, elfutils
, libselinux
, libsepol
, libunwind
2018-06-10 21:57:42 +00:00
, libusb1
2022-06-15 20:20:59 +00:00
, libuuid
2018-06-10 21:57:42 +00:00
, libzip
2022-06-15 20:20:59 +00:00
, orc
, pcre
, zstd
2018-06-10 21:57:42 +00:00
, glib
, gobject-introspection
2018-06-10 21:57:42 +00:00
, gst_all_1
, wrapGAppsHook3
2024-03-19 12:33:15 +00:00
# needs pkg_resources
, withDoc ? false
2022-06-15 20:20:59 +00:00
, sphinx
, graphviz
, withAravis ? true
, aravis
, meson
, withAravisUsbVision ? withAravis
, withGui ? true
, qt5
2018-06-10 21:57:42 +00:00
}:
stdenv.mkDerivation rec {
pname = "tiscamera";
2024-03-19 12:33:15 +00:00
version = "1.1.1";
2018-06-10 21:57:42 +00:00
src = fetchFromGitHub {
owner = "TheImagingSource";
2024-03-19 12:33:15 +00:00
repo = "tiscamera";
rev = "v-tiscamera-${version}";
hash = "sha256-33U/8CbqNWIRwfDHXCZSN466WEQj9fip+Z5EJ7kIwRM=";
2018-06-10 21:57:42 +00:00
};
postPatch = ''
cp ${catch2}/include/catch2/catch.hpp external/catch/catch.hpp
2022-06-15 20:20:59 +00:00
substituteInPlace ./data/udev/80-theimagingsource-cameras.rules.in \
--replace "/bin/sh" "${runtimeShell}/bin/sh" \
--replace "typically /usr/bin/" "" \
--replace "typically /usr/share/theimagingsource/tiscamera/uvc-extension/" ""
'';
2018-06-10 21:57:42 +00:00
nativeBuildInputs = [
cmake
pkg-config
wrapGAppsHook3
gobject-introspection
2022-06-15 20:20:59 +00:00
] ++ lib.optionals withDoc [
sphinx
graphviz
] ++ lib.optionals withAravis [
meson
] ++ lib.optionals withGui [
qt5.wrapQtAppsHook
2018-06-10 21:57:42 +00:00
];
buildInputs = [
2022-06-15 20:20:59 +00:00
elfutils
libselinux
libsepol
libunwind
2018-06-10 21:57:42 +00:00
libusb1
2022-06-15 20:20:59 +00:00
libuuid
2018-06-10 21:57:42 +00:00
libzip
2022-06-15 20:20:59 +00:00
orc
pcre
zstd
2018-06-10 21:57:42 +00:00
glib
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
2022-06-15 20:20:59 +00:00
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-ugly
] ++ lib.optionals withAravis [
aravis
] ++ lib.optionals withGui [
qt5.qtbase
2018-06-10 21:57:42 +00:00
];
2022-06-15 20:20:59 +00:00
hardeningDisable = [ "format" ];
2021-05-10 18:26:47 +00:00
2018-06-10 21:57:42 +00:00
cmakeFlags = [
2022-06-15 20:20:59 +00:00
"-DTCAM_BUILD_GST_1_0=ON"
"-DTCAM_BUILD_TOOLS=ON"
"-DTCAM_BUILD_V4L2=ON"
"-DTCAM_BUILD_LIBUSB=ON"
"-DTCAM_BUILD_TESTS=ON"
"-DTCAM_BUILD_ARAVIS=${if withAravis then "ON" else "OFF"}"
"-DTCAM_BUILD_DOCUMENTATION=${if withDoc then "ON" else "OFF"}"
"-DTCAM_BUILD_WITH_GUI=${if withGui then "ON" else "OFF"}"
"-DTCAM_DOWNLOAD_MESON=OFF"
"-DTCAM_INTERNAL_ARAVIS=OFF"
"-DTCAM_ARAVIS_USB_VISION=${if withAravis && withAravisUsbVision then "ON" else "OFF"}"
"-DTCAM_INSTALL_FORCE_PREFIX=ON"
2018-06-10 21:57:42 +00:00
];
2024-03-19 12:33:15 +00:00
env.CXXFLAGS = "-include cstdint";
2021-05-10 18:26:47 +00:00
doCheck = true;
# gstreamer tests requires, besides gst-plugins-bad, plugins installed by this expression.
checkPhase = "ctest --force-new-ctest-process -E gstreamer";
# wrapGAppsHook3: make sure we add ourselves to the introspection
2022-06-15 20:20:59 +00:00
# and gstreamer paths.
GI_TYPELIB_PATH = "${placeholder "out"}/lib/girepository-1.0";
GST_PLUGIN_SYSTEM_PATH_1_0 = "${placeholder "out"}/lib/gstreamer-1.0";
QT_PLUGIN_PATH = lib.optionalString withGui "${qt5.qtbase.bin}/${qt5.qtbase.qtPluginPrefix}";
dontWrapQtApps = true;
preFixup = ''
gappsWrapperArgs+=("''${qtWrapperArgs[@]}")
2018-06-10 21:57:42 +00:00
'';
meta = with lib; {
description = "Linux sources and UVC firmwares for The Imaging Source cameras";
homepage = "https://github.com/TheImagingSource/tiscamera";
2018-06-10 21:57:42 +00:00
license = with licenses; [ asl20 ];
platforms = platforms.linux;
maintainers = with maintainers; [ jraygauthier ];
};
}