2017-05-17 20:26:11 +01:00
|
|
|
{ stdenv, lib, fetchurl, pkgconfig, perl
|
2017-04-02 21:43:13 +01:00
|
|
|
, libjpeg, udev
|
|
|
|
, withUtils ? true
|
2018-02-24 12:59:47 +00:00
|
|
|
, withGUI ? true, alsaLib, libX11, qtbase, libGLU
|
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)
|
|
|
|
|
2012-05-22 15:30:12 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-04-02 21:43:13 +01:00
|
|
|
name = "v4l-utils-${version}";
|
2018-12-02 05:39:44 +00:00
|
|
|
version = "1.16.2";
|
2012-05-22 15:30:12 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://linuxtv.org/downloads/v4l-utils/${name}.tar.bz2";
|
2018-12-02 05:39:44 +00:00
|
|
|
sha256 = "0iwfdp4ghzd6l9qg5545032vwmqy2rnhk0xf1g9mad67l74hhckc";
|
2011-08-13 09:59:00 +01:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-24 18:33:54 +01:00
|
|
|
|
2017-04-02 21:43:13 +01:00
|
|
|
configureFlags =
|
|
|
|
if withUtils then [
|
2018-12-02 05:39:44 +00:00
|
|
|
"--with-udevdir=${placeholder "out"}/lib/udev"
|
2017-04-02 21:43:13 +01:00
|
|
|
] 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
|
|
|
'';
|
|
|
|
|
2017-05-17 20:26:11 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig perl ];
|
2011-08-13 09:59:00 +01:00
|
|
|
|
2018-02-24 12:59:47 +00:00
|
|
|
buildInputs = [ udev ] ++ lib.optionals (withUtils && withGUI) [ 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
|
|
|
NIX_CFLAGS_COMPILE = lib.optional (withUtils && withGUI) "-std=c++11";
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
2015-04-05 21:23:37 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "V4L utils and libv4l, provide common image formats regardless of the v4l device";
|
2017-08-02 22:50: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
|
|
|
}
|