nixpkgs/pkgs/applications/video/motion/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
722 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
2020-07-16 04:47:54 +01:00
, ffmpeg, libjpeg, libmicrohttpd }:
2016-11-07 00:38:23 +00:00
stdenv.mkDerivation rec {
pname = "motion";
2021-11-03 15:38:42 +00:00
version = "4.4.0";
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";
2020-07-16 04:47:20 +01:00
rev = "release-${version}";
2021-11-03 15:38:42 +00:00
sha256 = "sha256-srL9F99HHq5cw82rnQpywkTuY4s6hqIO64Pw5CnaG5Q=";
2016-11-07 00:38:23 +00:00
};
2017-12-30 05:17:17 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2018-11-04 11:51:27 +00:00
2020-07-16 04:47:54 +01:00
buildInputs = [ ffmpeg libjpeg libmicrohttpd ];
2017-12-30 05:17:17 +00:00
meta = with lib; {
2016-11-07 00:38:23 +00:00
description = "Monitors the video signal from cameras";
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 ];
2020-07-16 04:48:07 +01:00
platforms = platforms.unix;
2016-11-07 00:38:23 +00:00
};
}