nixpkgs/pkgs/os-specific/linux/v4l-utils/default.nix

56 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, pkgconfig, perl
, libjpeg, udev
, withUtils ? true
, withGUI ? true, alsaLib, libX11, qtbase, libGLU, wrapQtAppsHook
}:
# See libv4l in all-packages.nix for the libs only (overrides alsa, libX11 & QT)
let
withQt = withUtils && withGUI;
# we need to use stdenv.mkDerivation in order not to pollute the libv4ls closure with Qt
in stdenv.mkDerivation rec {
pname = "v4l-utils";
2019-09-02 16:23:15 -07:00
version = "1.16.7";
src = fetchurl {
2019-09-02 16:23:15 -07:00
url = "https://linuxtv.org/downloads/${pname}/${pname}-${version}.tar.bz2";
sha256 = "1ng0x3wj3a1ckfd00yxa4za43xms92gdp7rdag060b7p39z7m4gf";
};
outputs = [ "out" "dev" ];
2016-04-24 10:33:54 -07:00
configureFlags =
if withUtils then [
2018-12-01 21:39:44 -08:00
"--with-udevdir=${placeholder "out"}/lib/udev"
] else [
"--disable-v4l-utils"
];
2016-04-24 10:33:54 -07:00
postFixup = ''
# Create symlink for V4l1 compatibility
2016-04-24 10:33:54 -07:00
ln -s "$dev/include/libv4l1-videodev.h" "$dev/include/videodev.h"
'';
nativeBuildInputs = [ pkgconfig perl ] ++ lib.optional withQt wrapQtAppsHook;
buildInputs = [ udev ] ++ lib.optionals withQt [ alsaLib libX11 qtbase libGLU ];
2016-04-24 10:33:54 -07:00
propagatedBuildInputs = [ libjpeg ];
NIX_CFLAGS_COMPILE = lib.optional withQt "-std=c++11";
postPatch = ''
patchShebangs .
'';
meta = with stdenv.lib; {
description = "V4L utils and libv4l, provide common image formats regardless of the v4l device";
homepage = https://linuxtv.org/projects.php;
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ codyopel ];
platforms = platforms.linux;
};
}