biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / qmediathekview / default.nix
blobd08387669eb3a1986b43b4753afebd2c39475995
1 { lib
2 , stdenv
3 , mkDerivation
4 , fetchFromGitHub
5 , boost
6 , qtbase
7 , xz
8 , qmake
9 , pkg-config
12 mkDerivation rec {
13   pname = "QMediathekView";
14   version = "0.2.1";
16   src = fetchFromGitHub {
17     owner = "adamreichold";
18     repo = pname;
19     rev = "v${version}";
20     sha256 = "0i9hac9alaajbra3lx23m0iiq6ww4is00lpbzg5x70agjrwj0nd6";
21   };
23   postPatch = ''
24     substituteInPlace ${pname}.pro \
25       --replace /usr ""
26   '';
28   buildInputs = [ qtbase xz boost ];
30   nativeBuildInputs = [ qmake pkg-config ];
32   installFlags = [ "INSTALL_ROOT=$(out)" ];
34   meta = with lib; {
35     description = "Alternative Qt-based front-end for the database maintained by the MediathekView project";
36     inherit (src.meta) homepage;
37     license = licenses.gpl3Plus;
38     platforms = platforms.linux;
39     maintainers = with maintainers; [ dotlambda ];
40     broken = stdenv.hostPlatform.isAarch64;
41     mainProgram = "QMediathekView";
42   };