2018-11-04 11:51:27 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
|
|
|
, ffmpeg, libjpeg, libmicrohttpd }:
|
2016-11-07 00:38:23 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "motion-${version}";
|
2018-12-15 09:11:09 +00:00
|
|
|
version = "4.2.1";
|
2017-12-30 05:17:17 +00:00
|
|
|
|
2016-11-07 00:38:23 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-11-04 11:51:27 +00:00
|
|
|
owner = "Motion-Project";
|
|
|
|
repo = "motion";
|
|
|
|
rev = "release-${version}";
|
2018-12-15 09:11:09 +00:00
|
|
|
sha256 = "1h359hngbkazdli7vl949r6glrq4xxs70js6n1j8jxcyw1wxian9";
|
2016-11-07 00:38:23 +00:00
|
|
|
};
|
2017-12-30 05:17:17 +00:00
|
|
|
|
2016-11-07 00:38:23 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2018-11-04 11:51:27 +00:00
|
|
|
|
|
|
|
buildInputs = [ ffmpeg libjpeg libmicrohttpd ];
|
2017-12-30 05:17:17 +00:00
|
|
|
|
2016-11-07 00:38:23 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Monitors the video signal from cameras";
|
2018-11-04 11:51:27 +00:00
|
|
|
homepage = https://motion-project.github.io/;
|
2016-11-07 00:38:23 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2018-12-15 16:28:34 +00:00
|
|
|
maintainers = with maintainers; [ puffnfresh veprbl ];
|
2016-11-07 00:38:23 +00:00
|
|
|
};
|
|
|
|
}
|