nixpkgs/pkgs/applications/video/motion/default.nix
R. RyanTM 2b0f49cae4 motion: 4.2.1 -> 4.2.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/motion/versions
2019-02-16 01:15:12 -08:00

26 lines
699 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
, ffmpeg, libjpeg, libmicrohttpd }:
stdenv.mkDerivation rec {
name = "motion-${version}";
version = "4.2.2";
src = fetchFromGitHub {
owner = "Motion-Project";
repo = "motion";
rev = "release-${version}";
sha256 = "05c1gx75xy2hw49x6vkydvwxbr80kipsc3nr906k3hq8735svx6f";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ ffmpeg libjpeg libmicrohttpd ];
meta = with stdenv.lib; {
description = "Monitors the video signal from cameras";
homepage = https://motion-project.github.io/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ puffnfresh veprbl ];
};
}