My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/os-specific/linux/fswebcam/default.nix

21 lines
516 B

{ lib, stdenv, fetchurl, libv4l, gd }:
stdenv.mkDerivation rec {
pname = "fswebcam";
version = "20200725";
src = fetchurl {
url = "https://www.sanslogic.co.uk/fswebcam/files/fswebcam-${version}.tar.gz";
sha256 = "1dazsrcaw9s30zz3jpxamk9lkff5dkmflp1s0jjjvdbwa0k6k6ii";
};
buildInputs =
[ libv4l gd ];
meta = {
description = "Neat and simple webcam app";
homepage = "http://www.sanslogic.co.uk/fswebcam";
platforms = lib.platforms.linux;
license = lib.licenses.gpl2;
};
}