Merge pull request #93218 from veprbl/pr/motion_4_3_1

motion: 4.3.0 -> 4.3.1

authored by Dmitry Kalinkin and committed by GitHub 45c61c88 2ba2292a

+6 -5
+6 -5
pkgs/applications/video/motion/default.nix
··· 1 1 { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig 2 - , ffmpeg_3, libjpeg, libmicrohttpd }: 2 + , ffmpeg, libjpeg, libmicrohttpd }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "motion"; 6 - version = "4.3.0"; 6 + version = "4.3.1"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "Motion-Project"; 10 10 repo = "motion"; 11 - rev = "Release-${version}"; 12 - sha256 = "08mm7ajgs0qnrydywxxyzcll09z80crjnjkjnckdi6ljsj6s96j8"; 11 + rev = "release-${version}"; 12 + sha256 = "01yy4pdgd4wa97bpw27zn5zik9iz719m1jiwkk9lb7m2a2951dhc"; 13 13 }; 14 14 15 15 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 16 16 17 - buildInputs = [ ffmpeg_3 libjpeg libmicrohttpd ]; 17 + buildInputs = [ ffmpeg libjpeg libmicrohttpd ]; 18 18 19 19 meta = with stdenv.lib; { 20 20 description = "Monitors the video signal from cameras"; 21 21 homepage = "https://motion-project.github.io/"; 22 22 license = licenses.gpl2Plus; 23 23 maintainers = with maintainers; [ puffnfresh veprbl ]; 24 + platforms = platforms.unix; 24 25 }; 25 26 }