python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / video / uvccapture / default.nix
blobbe0a7fcd2416e6737fe5265312a08ebeb5fe388a
1 { lib, stdenv, fetchurl, libjpeg }:
3 let
4   debianPatches = fetchurl {
5     url = "mirror://debian/pool/main/u/uvccapture/uvccapture_0.5-3.debian.tar.gz";
6     sha256 = "0m29by13nw1r8sch366qzdxg5rsd1k766kqg1nj2pdb8f7pwjh9r";
7   };
9 in
11 stdenv.mkDerivation rec {
12   pname = "uvccapture";
13   version = "0.5";
15   src = fetchurl {
16     url = "mirror://debian/pool/main/u/uvccapture/uvccapture_${version}.orig.tar.gz";
17     sha256 = "1b3akkcmr3brbf93akr8xi20w8zqf2g0qfq928500wy04qi6jqpi";
18   };
20   buildInputs = [ libjpeg ];
22   patchPhase = ''
23     tar xvf "${debianPatches}"
24     for fname in debian/patches/fix_videodev_include_FTBFS.patch \
25                  debian/patches/warnings.patch \
26                  debian/patches/numbuffers.patch
27     do
28         echo "Applying patch $fname"
29         patch < "$fname"
30     done
31   '';
33   makeFlagsArray = [ "PREFIX=$(out)/bin/" ];
35   preInstall = ''
36     mkdir -p "$out/bin"
37   '';
39   # Upstream has no man page, install one from Debian
40   postInstall = ''
41     mkdir -p "$out/share/man/man1"
42     cp -v debian/uvccapture.1 "$out/share/man/man1/"
43   '';
45   meta = with lib; {
46     description = "Capture image from USB webcam at a specified interval";
47     license = licenses.gpl2Plus;
48     platforms = platforms.linux;
49     maintainers = [ maintainers.bjornfor ];
50   };