nixpkgs/pkgs/applications/video/mjpg-streamer/default.nix

33 lines
989 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, libjpeg }:
2015-01-02 19:35:02 +03:00
2019-08-14 00:52:01 +03:00
stdenv.mkDerivation {
pname = "mjpg-streamer";
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";
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
'';
meta = with lib; {
homepage = "https://github.com/jacksonliam/mjpg-streamer";
description = "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;
license = licenses.gpl2;
maintainers = with maintainers; [ gebner ];
2015-01-02 19:35:02 +03:00
};
}