nixpkgs/pkgs/os-specific/linux/v4l-utils/default.nix
Ryan Mulligan 38acfcad47 libv4l: 1.12.3 -> 1.14.2
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.14.2 with grep in /nix/store/rbajjyaiyj3q7lxnxs1j3sn1j5x5qgpp-v4l-utils-1.14.2
- directory tree listing: https://gist.github.com/2bfaf54c93c6f29802c6049289a7bf94
2018-03-18 12:58:07 -07:00

52 lines
1.3 KiB
Nix

{ stdenv, lib, fetchurl, pkgconfig, perl
, libjpeg, udev
, withUtils ? true
, withGUI ? true, alsaLib, libX11, qtbase, libGLU
}:
# See libv4l in all-packages.nix for the libs only (overrides alsa, libX11 & QT)
stdenv.mkDerivation rec {
name = "v4l-utils-${version}";
version = "1.14.2";
src = fetchurl {
url = "http://linuxtv.org/downloads/v4l-utils/${name}.tar.bz2";
sha256 = "14h6d2p3n4jmxhd8i0p1m5dbwz5vnpb3z88xqd9ghg15n7265fg6";
};
outputs = [ "out" "dev" ];
configureFlags =
if withUtils then [
"--with-udevdir=\${out}/lib/udev"
] else [
"--disable-v4l-utils"
];
postFixup = ''
# Create symlink for V4l1 compatibility
ln -s "$dev/include/libv4l1-videodev.h" "$dev/include/videodev.h"
'';
nativeBuildInputs = [ pkgconfig perl ];
buildInputs = [ udev ] ++ lib.optionals (withUtils && withGUI) [ alsaLib libX11 qtbase libGLU ];
propagatedBuildInputs = [ libjpeg ];
NIX_CFLAGS_COMPILE = lib.optional (withUtils && withGUI) "-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 viric ];
platforms = platforms.linux;
};
}