Merge pull request #122185 from dotlambda/qmediathekview-0.2.1

qmediathekview: 2019-01-06 -> 0.2.1
This commit is contained in:
Pavol Rusnak 2021-05-08 15:06:09 +02:00 committed by GitHub
commit 20b83c6de6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,22 @@
{ mkDerivation, lib, fetchFromGitHub, qtbase, qttools, xz, boost, qmake, pkg-config }: { lib
, stdenv
, mkDerivation
, fetchFromGitHub
, boost
, qtbase
, xz
, qmake
, pkg-config
}:
mkDerivation rec { mkDerivation rec {
pname = "QMediathekView"; pname = "QMediathekView";
version = "2019-01-06"; version = "0.2.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "adamreichold"; owner = "adamreichold";
repo = pname; repo = pname;
rev = "e098aaec552ec4e367078bf19953a08067316b4b"; rev = "v${version}";
sha256 = "0i9hac9alaajbra3lx23m0iiq6ww4is00lpbzg5x70agjrwj0nd6"; sha256 = "0i9hac9alaajbra3lx23m0iiq6ww4is00lpbzg5x70agjrwj0nd6";
}; };
@ -16,7 +25,7 @@ mkDerivation rec {
--replace /usr "" --replace /usr ""
''; '';
buildInputs = [ qtbase qttools xz boost ]; buildInputs = [ qtbase xz boost ];
nativeBuildInputs = [ qmake pkg-config ]; nativeBuildInputs = [ qmake pkg-config ];
@ -28,5 +37,6 @@ mkDerivation rec {
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ dotlambda ]; maintainers = with maintainers; [ dotlambda ];
broken = stdenv.isAarch64;
}; };
} }