2017-05-17 21:26:11 +02:00
|
|
|
{ stdenv, lib, fetchurl, pkgconfig, perl
|
2017-04-02 22:43:13 +02:00
|
|
|
, libjpeg, udev
|
|
|
|
, withUtils ? true
|
2018-02-24 13:59:47 +01:00
|
|
|
, withGUI ? true, alsaLib, libX11, qtbase, libGLU
|
2015-04-05 22:23:37 +02:00
|
|
|
}:
|
2011-08-13 10:59:00 +02:00
|
|
|
|
2015-04-05 22:23:37 +02:00
|
|
|
# See libv4l in all-packages.nix for the libs only (overrides alsa, libX11 & QT)
|
|
|
|
|
2012-05-22 16:30:12 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2017-04-02 22:43:13 +02:00
|
|
|
name = "v4l-utils-${version}";
|
|
|
|
version = "1.12.3";
|
2012-05-22 16:30:12 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://linuxtv.org/downloads/v4l-utils/${name}.tar.bz2";
|
2017-04-02 22:43:13 +02:00
|
|
|
sha256 = "0vpl3jl0x441y7b5cn7zhdsyi954hp9h2p30jhnr1zkx1rpxsiss";
|
2011-08-13 10:59:00 +02:00
|
|
|
};
|
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-24 19:33:54 +02:00
|
|
|
|
2017-04-02 22:43:13 +02:00
|
|
|
configureFlags =
|
|
|
|
if withUtils then [
|
|
|
|
"--with-udevdir=\${out}/lib/udev"
|
|
|
|
] else [
|
|
|
|
"--disable-v4l-utils"
|
|
|
|
];
|
2015-04-05 22:23:37 +02:00
|
|
|
|
2016-04-24 19:33:54 +02:00
|
|
|
postFixup = ''
|
2015-04-05 22:23:37 +02:00
|
|
|
# Create symlink for V4l1 compatibility
|
2016-04-24 19:33:54 +02:00
|
|
|
ln -s "$dev/include/libv4l1-videodev.h" "$dev/include/videodev.h"
|
2015-04-05 22:23:37 +02:00
|
|
|
'';
|
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig perl ];
|
2011-08-13 10:59:00 +02:00
|
|
|
|
2018-02-24 13:59:47 +01:00
|
|
|
buildInputs = [ udev ] ++ lib.optionals (withUtils && withGUI) [ alsaLib libX11 qtbase libGLU ];
|
2016-04-24 19:33:54 +02:00
|
|
|
|
2015-04-06 07:27:23 +02:00
|
|
|
propagatedBuildInputs = [ libjpeg ];
|
2011-08-13 10:59:00 +02:00
|
|
|
|
2017-04-02 22:43:13 +02:00
|
|
|
NIX_CFLAGS_COMPILE = lib.optional (withUtils && withGUI) "-std=c++11";
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
2015-04-05 22:23:37 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "V4L utils and libv4l, provide common image formats regardless of the v4l device";
|
2017-08-02 23:50:51 +02:00
|
|
|
homepage = https://linuxtv.org/projects.php;
|
2015-04-05 22:23:37 +02:00
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
maintainers = with maintainers; [ codyopel viric ];
|
|
|
|
platforms = platforms.linux;
|
2011-08-13 10:59:00 +02:00
|
|
|
};
|
2012-05-22 16:30:12 +02:00
|
|
|
}
|