vdrPlugins.streamdev: init at 0.6.3
This commit is contained in:
parent
45c07350c7
commit
0a1b21ff95
2 changed files with 41 additions and 0 deletions
|
@ -14,6 +14,8 @@ in {
|
|||
|
||||
softhddevice = callPackage ./softhddevice {};
|
||||
|
||||
streamdev = callPackage ./streamdev {};
|
||||
|
||||
xineliboutput = callPackage ./xineliboutput {};
|
||||
|
||||
skincurses = (mkPlugin "skincurses").overrideAttrs(oldAttr: {
|
||||
|
|
39
pkgs/applications/video/vdr/streamdev/default.nix
Normal file
39
pkgs/applications/video/vdr/streamdev/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
, vdr
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vdr-streamdev";
|
||||
version = "0.6.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vdr-projects";
|
||||
repo = "vdr-plugin-streamdev";
|
||||
rev = version;
|
||||
sha256 = "sha256-12sASyFAnSuP2xQzr1KL/Am52ez6hiOUH/0zFH2bxhc=";
|
||||
};
|
||||
|
||||
# configure don't accept argument --prefix
|
||||
dontAddPrefix = true;
|
||||
|
||||
makeFlags = [
|
||||
"DESTDIR=$(out)"
|
||||
"LIBDIR=/lib/vdr"
|
||||
"LOCDIR=/share/locale"
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
buildInputs = [
|
||||
vdr
|
||||
];
|
||||
|
||||
meta = with lib;{
|
||||
homepage = "https://github.com/vdr-projects/vdr-plugin-streamdev";
|
||||
description = "This PlugIn is a VDR implementation of the VTP (Video Transfer Protocol) Version 0.0.3 (see file PROTOCOL) and a basic HTTP Streaming Protocol.";
|
||||
maintainers = [ maintainers.ck3d ];
|
||||
license = licenses.gpl2;
|
||||
inherit (vdr.meta) platforms;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue