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

32 lines
963 B
Nix
Raw Normal View History

2016-03-12 14:36:52 +00:00
{ stdenv, fetchFromGitHub, cmake, libjpeg }:
2015-01-02 16:35:02 +00:00
stdenv.mkDerivation rec {
2016-03-12 14:36:52 +00:00
name = "mjpg-streamer-${version}";
version = "2016-03-08";
2015-01-02 16:35:02 +00:00
2016-03-12 14:36:52 +00:00
src = fetchFromGitHub {
owner = "jacksonliam";
repo = "mjpg-streamer";
rev = "4060cb64e3557037fd404d10e1c1d076b672e9e8";
sha256 = "0g7y832jsz4ylmq9qp2l4fq6bm8l6dhsbi60fr5jfqpx4l0pia8m";
2015-01-02 16:35:02 +00:00
};
2016-03-12 14:36:52 +00:00
prePatch = ''
cd mjpg-streamer-experimental
2015-01-02 16:35:02 +00:00
'';
2016-03-12 14:36:52 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = [ libjpeg ];
2015-01-02 16:35:02 +00:00
2016-03-12 14:36:52 +00:00
postFixup = ''
patchelf --set-rpath "$(patchelf --print-rpath $out/bin/mjpg_streamer):$out/lib/mjpg-streamer" $out/bin/mjpg_streamer
2015-01-02 16:35:02 +00:00
'';
2016-03-12 14:36:52 +00:00
meta = with stdenv.lib; {
homepage = https://sourceforge.net/projects/mjpg-streamer/;
2015-01-02 16:35:02 +00: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 14:36:52 +00:00
platforms = platforms.linux;
license = licenses.gpl2;
2015-01-02 16:35:02 +00:00
};
}