nixpkgs/pkgs/tools/networking/gmrender-resurrect/default.nix
Arkanoid87 cddfdc642e
gstreamer: move executables to bin output
Co-Authored-By: Jan Tojnar <jtojnar@gmail.com>
2021-06-07 11:49:36 +02:00

37 lines
1.2 KiB
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, makeWrapper, gstreamer
, gst-plugins-base, gst-plugins-good, gst-plugins-bad, gst-plugins-ugly, gst-libav, libupnp }:
let
version = "0.0.9";
pluginPath = lib.makeSearchPathOutput "lib" "lib/gstreamer-1.0" [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav ];
in
stdenv.mkDerivation {
pname = "gmrender-resurrect";
inherit version;
src = fetchFromGitHub {
owner = "hzeller";
repo = "gmrender-resurrect";
rev = "v${version}";
sha256 = "0byxd28hnhkhf3lqsad43n6czfajvc1ksg9zikxb95wwk4ljqv1q";
};
buildInputs = [ gstreamer libupnp ];
nativeBuildInputs = [ autoreconfHook pkg-config makeWrapper ];
postInstall = ''
for prog in "$out/bin/"*; do
wrapProgram "$prog" --suffix GST_PLUGIN_SYSTEM_PATH_1_0 : "${pluginPath}"
done
'';
meta = with lib; {
description = "Resource efficient UPnP/DLNA renderer, optimal for Raspberry Pi, CuBox or a general MediaServer";
homepage = "https://github.com/hzeller/gmrender-resurrect";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ koral hzeller ];
};
}