2021-01-19 06:50:56 +00:00
|
|
|
|
{ stdenv, lib, fetchurl, pkg-config, perl
|
2017-04-02 21:43:13 +01:00
|
|
|
|
, libjpeg, udev
|
|
|
|
|
, withUtils ? true
|
2019-08-21 01:58:13 +01:00
|
|
|
|
, withGUI ? true, alsaLib, libX11, qtbase, libGLU, wrapQtAppsHook
|
2015-04-05 21:23:37 +01:00
|
|
|
|
}:
|
2011-08-13 09:59:00 +01:00
|
|
|
|
|
2015-04-05 21:23:37 +01:00
|
|
|
|
# See libv4l in all-packages.nix for the libs only (overrides alsa, libX11 & QT)
|
|
|
|
|
|
2019-08-21 01:58:13 +01:00
|
|
|
|
let
|
|
|
|
|
withQt = withUtils && withGUI;
|
|
|
|
|
|
|
|
|
|
# we need to use stdenv.mkDerivation in order not to pollute the libv4l’s closure with Qt
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
|
pname = "v4l-utils";
|
2020-07-07 20:39:29 +01:00
|
|
|
|
version = "1.20.0";
|
2012-05-22 15:30:12 +01:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-03 00:23:15 +01:00
|
|
|
|
url = "https://linuxtv.org/downloads/${pname}/${pname}-${version}.tar.bz2";
|
2020-07-07 20:39:29 +01:00
|
|
|
|
sha256 = "1xr66y6w422hil6s7n8d61a2vhwh4im8l267amf41jvw7xqihqcm";
|
2011-08-13 09:59:00 +01:00
|
|
|
|
};
|
|
|
|
|
|
2019-06-23 14:06:01 +01:00
|
|
|
|
outputs = [ "out" ] ++ lib.optional withUtils "lib" ++ [ "dev" ];
|
2016-04-24 18:33:54 +01:00
|
|
|
|
|
2019-06-23 14:06:01 +01:00
|
|
|
|
configureFlags = (if withUtils then [
|
|
|
|
|
"--with-localedir=${placeholder "lib"}/share/locale"
|
|
|
|
|
"--with-udevdir=${placeholder "out"}/lib/udev"
|
|
|
|
|
] else [
|
|
|
|
|
"--disable-v4l-utils"
|
|
|
|
|
]);
|
2015-04-05 21:23:37 +01:00
|
|
|
|
|
2016-04-24 18:33:54 +01:00
|
|
|
|
postFixup = ''
|
2015-04-05 21:23:37 +01:00
|
|
|
|
# Create symlink for V4l1 compatibility
|
2016-04-24 18:33:54 +01:00
|
|
|
|
ln -s "$dev/include/libv4l1-videodev.h" "$dev/include/videodev.h"
|
2015-04-05 21:23:37 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
|
nativeBuildInputs = [ pkg-config perl ] ++ lib.optional withQt wrapQtAppsHook;
|
2011-08-13 09:59:00 +01:00
|
|
|
|
|
2019-08-21 01:58:13 +01:00
|
|
|
|
buildInputs = [ udev ] ++ lib.optionals withQt [ alsaLib libX11 qtbase libGLU ];
|
2016-04-24 18:33:54 +01:00
|
|
|
|
|
2015-04-06 06:27:23 +01:00
|
|
|
|
propagatedBuildInputs = [ libjpeg ];
|
2011-08-13 09:59:00 +01:00
|
|
|
|
|
2017-04-02 21:43:13 +01:00
|
|
|
|
postPatch = ''
|
2019-06-23 14:06:01 +01:00
|
|
|
|
patchShebangs utils/cec-ctl/msg2ctl.pl
|
2020-08-07 06:02:44 +01:00
|
|
|
|
patchShebangs utils/libcecutil/cec-gen.pl
|
2017-04-02 21:43:13 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with lib; {
|
2015-04-05 21:23:37 +01:00
|
|
|
|
description = "V4L utils and libv4l, provide common image formats regardless of the v4l device";
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://linuxtv.org/projects.php";
|
2015-04-05 21:23:37 +01:00
|
|
|
|
license = licenses.lgpl21Plus;
|
2018-07-22 20:50:19 +01:00
|
|
|
|
maintainers = with maintainers; [ codyopel ];
|
2015-04-05 21:23:37 +01:00
|
|
|
|
platforms = platforms.linux;
|
2011-08-13 09:59:00 +01:00
|
|
|
|
};
|
2012-05-22 15:30:12 +01:00
|
|
|
|
}
|