summary refs log tree commit diff
path: root/pkgs/os-specific/linux/fswebcam/default.nix
blob: 53a1bdbc4c7e93dd7ea8e8a7f1e312298b7dbc98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, libv4l, gd }:

stdenv.mkDerivation rec {
  name = "fswebcam-20140113";

  src = fetchurl {
    url = "https://www.sanslogic.co.uk/fswebcam/files/${name}.tar.gz";
    sha256 = "3ee389f72a7737700d22e0c954720b1e3bbadc8a0daad6426c25489ba9dc3199";
  };

  buildInputs =
    [ libv4l gd ];

  meta = {
    description = "Neat and simple webcam app";
    homepage = "http://www.sanslogic.co.uk/fswebcam";
    platforms = stdenv.lib.platforms.linux;
    license = stdenv.lib.licenses.gpl2;
  };
}