2019-08-20 17:58:13 -07:00
|
|
|
|
{ stdenv, lib, fetchurl, pkgconfig, perl
|
2017-04-02 13:43:13 -07:00
|
|
|
|
, libjpeg, udev
|
|
|
|
|
, withUtils ? true
|
2019-08-20 17:58:13 -07:00
|
|
|
|
, withGUI ? true, alsaLib, libX11, qtbase, libGLU, wrapQtAppsHook
|
2015-04-05 13:23:37 -07:00
|
|
|
|
}:
|
2011-08-13 01:59:00 -07:00
|
|
|
|
|
2015-04-05 13:23:37 -07:00
|
|
|
|
# See libv4l in all-packages.nix for the libs only (overrides alsa, libX11 & QT)
|
|
|
|
|
|
2019-08-20 17:58:13 -07: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 05:41:18 -07:00
|
|
|
|
pname = "v4l-utils";
|
2019-09-02 16:23:15 -07:00
|
|
|
|
version = "1.16.7";
|
2012-05-22 07:30:12 -07:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-02 16:23:15 -07:00
|
|
|
|
url = "https://linuxtv.org/downloads/${pname}/${pname}-${version}.tar.bz2";
|
|
|
|
|
sha256 = "1ng0x3wj3a1ckfd00yxa4za43xms92gdp7rdag060b7p39z7m4gf";
|
2011-08-13 01:59:00 -07:00
|
|
|
|
};
|
|
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-24 10:33:54 -07:00
|
|
|
|
|
2017-04-02 13:43:13 -07:00
|
|
|
|
configureFlags =
|
|
|
|
|
if withUtils then [
|
2018-12-01 21:39:44 -08:00
|
|
|
|
"--with-udevdir=${placeholder "out"}/lib/udev"
|
2017-04-02 13:43:13 -07:00
|
|
|
|
] else [
|
|
|
|
|
"--disable-v4l-utils"
|
|
|
|
|
];
|
2015-04-05 13:23:37 -07:00
|
|
|
|
|
2016-04-24 10:33:54 -07:00
|
|
|
|
postFixup = ''
|
2015-04-05 13:23:37 -07:00
|
|
|
|
# Create symlink for V4l1 compatibility
|
2016-04-24 10:33:54 -07:00
|
|
|
|
ln -s "$dev/include/libv4l1-videodev.h" "$dev/include/videodev.h"
|
2015-04-05 13:23:37 -07:00
|
|
|
|
'';
|
|
|
|
|
|
2019-08-20 17:58:13 -07:00
|
|
|
|
nativeBuildInputs = [ pkgconfig perl ] ++ lib.optional withQt wrapQtAppsHook;
|
2011-08-13 01:59:00 -07:00
|
|
|
|
|
2019-08-20 17:58:13 -07:00
|
|
|
|
buildInputs = [ udev ] ++ lib.optionals withQt [ alsaLib libX11 qtbase libGLU ];
|
2016-04-24 10:33:54 -07:00
|
|
|
|
|
2015-04-05 22:27:23 -07:00
|
|
|
|
propagatedBuildInputs = [ libjpeg ];
|
2011-08-13 01:59:00 -07:00
|
|
|
|
|
2019-08-20 17:58:13 -07:00
|
|
|
|
NIX_CFLAGS_COMPILE = lib.optional withQt "-std=c++11";
|
2017-04-02 13:43:13 -07:00
|
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
|
patchShebangs .
|
|
|
|
|
'';
|
|
|
|
|
|
2015-04-05 13:23:37 -07:00
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
description = "V4L utils and libv4l, provide common image formats regardless of the v4l device";
|
2017-08-02 14:50:51 -07:00
|
|
|
|
homepage = https://linuxtv.org/projects.php;
|
2015-04-05 13:23:37 -07:00
|
|
|
|
license = licenses.lgpl21Plus;
|
2018-07-22 12:50:19 -07:00
|
|
|
|
maintainers = with maintainers; [ codyopel ];
|
2015-04-05 13:23:37 -07:00
|
|
|
|
platforms = platforms.linux;
|
2011-08-13 01:59:00 -07:00
|
|
|
|
};
|
2012-05-22 07:30:12 -07:00
|
|
|
|
}
|