summary refs log tree commit diff
path: root/pkgs/os-specific/linux/v4l-utils
diff options
context:
space:
mode:
authorcodyopel <codyopel@gmail.com>2015-04-05 16:23:37 -0400
committercodyopel <codyopel@gmail.com>2015-04-05 16:23:37 -0400
commit466cb22bcd06ddf57b76e93f992957443ea313b4 (patch)
tree2c73aa65760ee9c705838db09422b0bd50da9721 /pkgs/os-specific/linux/v4l-utils
parentbb18faf767347eb007105225b7b927ef55839b40 (diff)
downloadnixpkgs-466cb22bcd06ddf57b76e93f992957443ea313b4.tar
nixpkgs-466cb22bcd06ddf57b76e93f992957443ea313b4.tar.gz
nixpkgs-466cb22bcd06ddf57b76e93f992957443ea313b4.tar.bz2
nixpkgs-466cb22bcd06ddf57b76e93f992957443ea313b4.tar.lz
nixpkgs-466cb22bcd06ddf57b76e93f992957443ea313b4.tar.xz
nixpkgs-466cb22bcd06ddf57b76e93f992957443ea313b4.tar.zst
nixpkgs-466cb22bcd06ddf57b76e93f992957443ea313b4.zip
v4l-util: refactor & 1.0.0 -> 1.6.2 (libv4l)
+ added missing dependencies (alsa, libXll & qt5)
+ added fixes to make sure unnecessary features are disabled for libv4l
Diffstat (limited to 'pkgs/os-specific/linux/v4l-utils')
-rw-r--r--pkgs/os-specific/linux/v4l-utils/default.nix55
1 files changed, 42 insertions, 13 deletions
diff --git a/pkgs/os-specific/linux/v4l-utils/default.nix b/pkgs/os-specific/linux/v4l-utils/default.nix
index 0455c2b8626..ca5b35cff2f 100644
--- a/pkgs/os-specific/linux/v4l-utils/default.nix
+++ b/pkgs/os-specific/linux/v4l-utils/default.nix
@@ -1,26 +1,55 @@
-{stdenv, fetchurl, which, libjpeg
-, withQt4 ? false, qt4 ? null}:
+{ stdenv, fetchurl, pkgconfig
+, libjpeg
+, alsaLib ? null
+, libX11 ? null
+, qt4 ? null # The default is set to qt4 in all-packages.nix
+, qt5 ? null
+}:
 
-assert withQt4 -> qt4 != null;
+# See libv4l in all-packages.nix for the libs only (overrides alsa, libX11 & QT)
+
+assert qt4 != null -> qt5 == null;
+assert qt5 != null -> qt4 == null;
+
+let
+  inherit (stdenv.lib) optional;
+in
 
 stdenv.mkDerivation rec {
-  name = "v4l-utils-1.0.0";
+  name = "v4l-utils-1.6.2";
 
   src = fetchurl {
     url = "http://linuxtv.org/downloads/v4l-utils/${name}.tar.bz2";
-    sha256 = "0c2z500ijxr1ldzb4snasfpwi2icp04f8pk7akiqjkp0k4h8iqqx";
+    sha256 = "0zdyjrja2mkqlijpdb4gz1vw0g7pslswmgqqsgri3yq408gypmnk";
   };
 
-  buildInputs = [ which ];
-  propagatedBuildInputs = [ libjpeg ] ++ stdenv.lib.optional withQt4 qt4;
+  configureFlags = [
+    "--enable-libv4l"
+  ] ++ (if (alsaLib != null && libX11 != null && (qt4 != null || qt5 != null)) then [
+    "--with-udevdir=\${out}/lib/udev"
+    "--enable-v4l-utils"
+    "--enable-qv4l2"
+  ] else [
+    "--without-libudev"
+    "--without-udevdir"
+    "--disable-v4l-utils"
+    "--disable-qv4l2"
+  ]);
+
+  postInstall = ''
+    # Create symlink for V4l1 compatibility
+    ln -s $out/include/libv4l1-videodev.h $out/include/videodev.h
+  '';
+
+  nativeBuildInputs = [ pkgconfig ];
 
-  preConfigure = ''configureFlags="--with-udevdir=$out/lib/udev"'';
+  buildInputs = [ alsaLib libjpeg libX11 qt4 qt5 ];
 
-  meta = {
+  meta = with stdenv.lib; {
+    description = "V4L utils and libv4l, provide common image formats regardless of the v4l device";
     homepage = http://linuxtv.org/projects.php;
-    description = "V4L utils and libv4l, that provides common image formats regardless of the v4l device";
-    license = stdenv.lib.licenses.free; # The libs are of LGPLv2.1+, some other pieces are GPL.
-    maintainers = with stdenv.lib.maintainers; [viric];
-    platforms = with stdenv.lib.platforms; linux;
+    license = licenses.lgpl21Plus;
+    maintainers = with maintainers; [ codyopel viric ];
+    platforms = platforms.linux;
   };
 }