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

33 lines
882 B
Nix
Raw Normal View History

2020-04-07 20:28:34 +00:00
{ mkDerivation, stdenv, fetchFromGitHub, qtbase, qttools, xz, boost, qmake, pkgconfig }:
2018-02-03 21:18:25 +00:00
2020-04-07 20:28:34 +00:00
mkDerivation rec {
2018-02-03 21:18:25 +00:00
pname = "QMediathekView";
version = "2019-01-06";
2018-02-03 21:18:25 +00:00
src = fetchFromGitHub {
owner = "adamreichold";
repo = pname;
rev = "e098aaec552ec4e367078bf19953a08067316b4b";
sha256 = "0i9hac9alaajbra3lx23m0iiq6ww4is00lpbzg5x70agjrwj0nd6";
2018-02-03 21:18:25 +00:00
};
postPatch = ''
substituteInPlace ${pname}.pro \
--replace /usr ""
'';
buildInputs = [ qtbase qttools xz boost ];
nativeBuildInputs = [ qmake pkgconfig ];
installFlags = [ "INSTALL_ROOT=$(out)" ];
meta = with stdenv.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;
2018-02-03 21:18:25 +00:00
maintainers = with maintainers; [ dotlambda ];
};
}