summary refs log tree commit diff
path: root/pkgs/applications/video/mediathekview/default.nix
blob: a5de209854b36d44afc7a47ce19bd8f8cca304f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, fetchurl, makeWrapper, jre }:

stdenv.mkDerivation rec {
  version = "13.2.1";
  pname = "mediathekview";
  src = fetchurl {
    url = "https://download.mediathekview.de/stabil/MediathekView-${version}.tar.gz";
    sha256 = "11wg6klviig0h7pprfaygamsgqr7drqra2s4yxgfak6665033l2a";
  };

  nativeBuildInputs = [ makeWrapper ];

  installPhase = ''
    mkdir -p $out/{lib,bin,share/mediathekview}

    install -m644 MediathekView.jar $out/
    install -m644 -t $out/lib lib/*
    install -m755 bin/flv.sh $out/share/mediathekview

    makeWrapper ${jre}/bin/java $out/bin/mediathek \
      --add-flags "-cp '$out/lib/*' -jar $out/MediathekView.jar"
    '';

  meta = with stdenv.lib; {
    description = "Offers access to the Mediathek of different tv stations (ARD, ZDF, Arte, etc.)";
    homepage = https://mediathekview.de/;
    license = licenses.gpl3;
    maintainers = with maintainers; [ moredread ];
    platforms = platforms.all;
  };
}