mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 01:45:11 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
34 lines
1.0 KiB
Nix
34 lines
1.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, libjpeg }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "mjpg-streamer";
|
|
version = "unstable-2019-05-24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jacksonliam";
|
|
repo = "mjpg-streamer";
|
|
rev = "501f6362c5afddcfb41055f97ae484252c85c912";
|
|
sha256 = "1cl159svfs1zzzrd3zgn4x7qy6751bvlnxfwf5hn5fmg4iszajw7";
|
|
};
|
|
|
|
prePatch = ''
|
|
cd mjpg-streamer-experimental
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ libjpeg ];
|
|
|
|
postFixup = ''
|
|
patchelf --set-rpath "$(patchelf --print-rpath $out/bin/mjpg_streamer):$out/lib/mjpg-streamer" $out/bin/mjpg_streamer
|
|
'';
|
|
|
|
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";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ gebner ];
|
|
mainProgram = "mjpg_streamer";
|
|
};
|
|
}
|