qmediathekview: 2019-01-06 -> 0.2.1
This commit is contained in:
parent
6358647558
commit
4a214a74ce
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue