about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/video/wxcam/default.nix
blob: 5a6c6ff524e3c72c84944bddce40332bf138d259 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{ lib, stdenv, fetchurl
, pkg-config
, intltool
, libX11, libXv, libSM
, gtk, libglade
, wxGTK
, perlPackages
, xvidcore
, mjpegtools
, alsa-lib
, libv4l
, cimg }:

stdenv.mkDerivation rec {

  pname = "wxcam";
  version = "1.1";

  src = fetchurl {
    url = "mirror://sourceforge/project/wxcam/wxcam/${version}/${pname}-${version}.tar.gz";
    sha256 = "1765bvc65fpzn9ycnnj5hais9xkx9v0sm6a878d35x54bpanr859";
  };

  buildInputs = with lib;
  [ pkg-config intltool libX11 libXv libSM gtk libglade wxGTK perlPackages.XMLParser xvidcore mjpegtools alsa-lib libv4l cimg ];

  NIX_CFLAGS_COMPILE="-I ${cimg}/include/cimg";

  postUnpack = ''
    sed -ie 's|/usr/share/|'"$out/share/"'|g' $sourceRoot/Makefile.in
  '';

  installPhase = ''
    make install prefix="$out" wxcamdocdir="$out/share/doc/wxcam"
  '';

  meta = with lib; {
    description = "An open-source, wxGTK-based webcam app for Linux";
    longDescription = ''
    wxCam is a webcam application for linux. It supports video recording
    (avi uncompressed and Xvid formats), snapshot taking, and some special
    commands for philips webcams, so you can also use it for astronomy purposes.
    It supports both video4linux 1 and 2 drivers,
    so it should work on a very large number of devices.
    '';
    homepage = "http://wxcam.sourceforge.net/";
    license = licenses.gpl3Plus;
    maintainers = [ maintainers.AndersonTorres ];
    platforms = platforms.linux;
  };
}