nixpkgs/pkgs/applications/video/qmediathekview/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
870 B
Nix
Raw Normal View History

2021-05-08 14:37:42 +03:00
{ lib
, stdenv
, mkDerivation
, fetchFromGitHub
, boost
, qtbase
, xz
, qmake
, pkg-config
}:
2018-02-04 00:18:25 +03:00
2020-04-07 23:28:34 +03:00
mkDerivation rec {
2018-02-04 00:18:25 +03:00
pname = "QMediathekView";
2021-05-08 14:37:42 +03:00
version = "0.2.1";
2018-02-04 00:18:25 +03:00
src = fetchFromGitHub {
owner = "adamreichold";
repo = pname;
2021-05-08 14:37:42 +03:00
rev = "v${version}";
sha256 = "0i9hac9alaajbra3lx23m0iiq6ww4is00lpbzg5x70agjrwj0nd6";
2018-02-04 00:18:25 +03:00
};
postPatch = ''
substituteInPlace ${pname}.pro \
--replace /usr ""
'';
2021-05-08 14:37:42 +03:00
buildInputs = [ qtbase xz boost ];
2018-02-04 00:18:25 +03:00
nativeBuildInputs = [ qmake pkg-config ];
2018-02-04 00:18:25 +03:00
installFlags = [ "INSTALL_ROOT=$(out)" ];
meta = with lib; {
2018-02-04 00:18:25 +03:00
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;
2018-02-04 00:18:25 +03:00
maintainers = with maintainers; [ dotlambda ];
2021-05-08 14:37:42 +03:00
broken = stdenv.isAarch64;
2018-02-04 00:18:25 +03:00
};
}