summary refs log tree commit diff
path: root/pkgs/applications/video/qmediathekview/default.nix
blob: b05fa113a30feb2f1d817b362aebe264ba72971b (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
32
{ mkDerivation, lib, stdenv, fetchFromGitHub, qtbase, qttools, xz, boost, qmake, pkg-config }:

mkDerivation rec {
  pname = "QMediathekView";
  version = "2019-01-06";

  src = fetchFromGitHub {
    owner = "adamreichold";
    repo = pname;
    rev = "e098aaec552ec4e367078bf19953a08067316b4b";
    sha256 = "0i9hac9alaajbra3lx23m0iiq6ww4is00lpbzg5x70agjrwj0nd6";
  };

  postPatch = ''
    substituteInPlace ${pname}.pro \
      --replace /usr ""
  '';

  buildInputs = [ qtbase qttools xz boost ];

  nativeBuildInputs = [ qmake pkg-config ];

  installFlags = [ "INSTALL_ROOT=$(out)" ];

  meta = with lib; {
    description = "An alternative Qt-based front-end for the database maintained by the MediathekView project";
    inherit (src.meta) homepage;
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
    maintainers = with maintainers; [ dotlambda ];
  };
}