2016-03-12 17:36:52 +03:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, libjpeg }:
|
2015-01-02 19:35:02 +03:00
|
|
|
|
2019-08-14 00:52:01 +03:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "mjpg-streamer";
|
2019-05-31 19:57:24 +03:00
|
|
|
version = "unstable-2019-05-24";
|
2015-01-02 19:35:02 +03:00
|
|
|
|
2016-03-12 17:36:52 +03:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jacksonliam";
|
|
|
|
repo = "mjpg-streamer";
|
2019-05-31 19:57:24 +03:00
|
|
|
rev = "501f6362c5afddcfb41055f97ae484252c85c912";
|
|
|
|
sha256 = "1cl159svfs1zzzrd3zgn4x7qy6751bvlnxfwf5hn5fmg4iszajw7";
|
2015-01-02 19:35:02 +03:00
|
|
|
};
|
|
|
|
|
2016-03-12 17:36:52 +03:00
|
|
|
prePatch = ''
|
|
|
|
cd mjpg-streamer-experimental
|
2015-01-02 19:35:02 +03:00
|
|
|
'';
|
|
|
|
|
2016-03-12 17:36:52 +03:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ libjpeg ];
|
2015-01-02 19:35:02 +03:00
|
|
|
|
2016-03-12 17:36:52 +03:00
|
|
|
postFixup = ''
|
|
|
|
patchelf --set-rpath "$(patchelf --print-rpath $out/bin/mjpg_streamer):$out/lib/mjpg-streamer" $out/bin/mjpg_streamer
|
2015-01-02 19:35:02 +03:00
|
|
|
'';
|
|
|
|
|
2016-03-12 17:36:52 +03:00
|
|
|
meta = with stdenv.lib; {
|
2019-05-31 19:57:24 +03:00
|
|
|
homepage = "https://github.com/jacksonliam/mjpg-streamer";
|
2015-01-02 19:35:02 +03:00
|
|
|
description = "MJPG-streamer takes JPGs from Linux-UVC compatible webcams, filesystem or other input plugins and streams them as M-JPEG via HTTP to webbrowsers, VLC and other software";
|
2016-03-12 17:36:52 +03:00
|
|
|
platforms = platforms.linux;
|
2016-06-07 04:57:21 +03:00
|
|
|
license = licenses.gpl2;
|
2019-05-31 19:57:24 +03:00
|
|
|
maintainers = with maintainers; [ gebner ];
|
2015-01-02 19:35:02 +03:00
|
|
|
};
|
|
|
|
}
|