9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
91 lines
2.9 KiB
Nix
91 lines
2.9 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config, gtk-doc, intltool
|
|
, audit, glib, libusb1, libxml2
|
|
, wrapGAppsHook
|
|
, gstreamer ? null
|
|
, gst-plugins-base ? null
|
|
, gst-plugins-good ? null
|
|
, gst-plugins-bad ? null
|
|
, libnotify ? null
|
|
, gnome3 ? null
|
|
, gtk3 ? null
|
|
, enableUsb ? true
|
|
, enablePacketSocket ? true
|
|
, enableViewer ? true
|
|
, enableGstPlugin ? true
|
|
, enableCppTest ? false
|
|
, enableFastHeartbeat ? false
|
|
, enableAsan ? false
|
|
}:
|
|
|
|
let
|
|
gstreamerAtLeastVersion1 =
|
|
stdenv.lib.all
|
|
(pkg: pkg != null && stdenv.lib.versionAtLeast (stdenv.lib.getVersion pkg) "1.0")
|
|
[ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad ];
|
|
in
|
|
assert enableGstPlugin -> stdenv.lib.all (pkg: pkg != null) [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad ];
|
|
assert enableViewer -> enableGstPlugin;
|
|
assert enableViewer -> libnotify != null;
|
|
assert enableViewer -> gnome3 != null;
|
|
assert enableViewer -> gtk3 != null;
|
|
assert enableViewer -> gstreamerAtLeastVersion1;
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "aravis";
|
|
version = "0.6.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AravisProject";
|
|
repo = pname;
|
|
rev= "ARAVIS_${builtins.replaceStrings ["."] ["_"] version}";
|
|
sha256 = "18fnliks661kzc3g8v08hcaj18hjid8b180d6s9gwn0zgv4g374w";
|
|
};
|
|
|
|
outputs = [ "bin" "dev" "out" "lib" ];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
intltool
|
|
gtk-doc
|
|
] ++ stdenv.lib.optional enableViewer wrapGAppsHook;
|
|
|
|
buildInputs =
|
|
[ glib libxml2 ]
|
|
++ stdenv.lib.optional enableUsb libusb1
|
|
++ stdenv.lib.optional enablePacketSocket audit
|
|
++ stdenv.lib.optionals (enableViewer || enableGstPlugin) [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad ]
|
|
++ stdenv.lib.optionals (enableViewer) [ libnotify gtk3 gnome3.adwaita-icon-theme ];
|
|
|
|
preAutoreconf = ''./autogen.sh'';
|
|
|
|
configureFlags =
|
|
stdenv.lib.optional enableUsb "--enable-usb"
|
|
++ stdenv.lib.optional enablePacketSocket "--enable-packet-socket"
|
|
++ stdenv.lib.optional enableViewer "--enable-viewer"
|
|
++ stdenv.lib.optional enableGstPlugin
|
|
(if gstreamerAtLeastVersion1 then "--enable-gst-plugin" else "--enable-gst-0.10-plugin")
|
|
++ stdenv.lib.optional enableCppTest "--enable-cpp-test"
|
|
++ stdenv.lib.optional enableFastHeartbeat "--enable-fast-heartbeat"
|
|
++ stdenv.lib.optional enableAsan "--enable-asan";
|
|
|
|
postPatch = ''
|
|
ln -s ${gtk-doc}/share/gtk-doc/data/gtk-doc.make .
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Library for video acquisition using GenICam cameras";
|
|
longDescription = ''
|
|
Implements the gigabit ethernet and USB3 protocols used by industrial cameras.
|
|
'';
|
|
homepage = "https://aravisproject.github.io/docs/aravis-0.5";
|
|
license = stdenv.lib.licenses.lgpl2;
|
|
maintainers = [];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|
|
|