mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
21 lines
507 B
Nix
21 lines
507 B
Nix
{ 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;
|
|
};
|
|
}
|