1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-30 09:31:01 +00:00
nixpkgs/pkgs/applications/video/qmediathekview/default.nix

43 lines
870 B
Nix
Raw Normal View History

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