python310Packages.onlykey-solo-python: fix compatibility with fido2 1.1.3 (#354382)
[NixPkgs.git] / pkgs / applications / video / vdr / streamdev / default.nix
blob248f06538393f4309361ba5a9ca17d3d496cfd1b
1 { stdenv
2 , fetchFromGitHub
3 , lib
4 , vdr
5 }:
6 stdenv.mkDerivation rec {
7   pname = "vdr-streamdev";
8   version = "0.6.3";
10   src = fetchFromGitHub {
11     owner = "vdr-projects";
12     repo = "vdr-plugin-streamdev";
13     rev = version;
14     sha256 = "sha256-12sASyFAnSuP2xQzr1KL/Am52ez6hiOUH/0zFH2bxhc=";
15   };
17   # configure don't accept argument --prefix
18   dontAddPrefix = true;
20   makeFlags = [
21     "DESTDIR=$(out)"
22     "LIBDIR=/lib/vdr"
23     "LOCDIR=/share/locale"
24   ];
26   enableParallelBuilding = true;
28   buildInputs = [
29     vdr
30   ];
32   meta = with lib;{
33     inherit (src.meta) homepage;
34     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";
35     maintainers = [ maintainers.ck3d ];
36     license = licenses.gpl2;
37     inherit (vdr.meta) platforms;
38   };