2021-01-25 08:26:54 +00:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, cmake, pkg-config, pcsclite, qtsvg, qttools, qtwebsockets
|
2020-02-27 20:43:54 +00:00
|
|
|
, qtquickcontrols2, qtgraphicaleffects }:
|
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "AusweisApp2";
|
2020-12-04 05:45:05 +00:00
|
|
|
version = "1.22.0";
|
2020-02-27 20:43:54 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Governikus";
|
|
|
|
repo = "AusweisApp2";
|
2020-11-01 22:39:49 +00:00
|
|
|
rev = version;
|
2020-12-04 05:45:05 +00:00
|
|
|
sha256 = "00isb8xcbm419nvxx2ri0n8x5d403733h2whjqjcd3hmpx3x4q1h";
|
2020-02-27 20:43:54 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2020-02-27 20:43:54 +00:00
|
|
|
|
|
|
|
buildInputs = [ qtsvg qttools qtwebsockets qtquickcontrols2 qtgraphicaleffects pcsclite ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-02-27 20:43:54 +00:00
|
|
|
description = "Authentication software for the German ID card";
|
|
|
|
downloadPage = "https://github.com/Governikus/AusweisApp2/releases";
|
|
|
|
homepage = "https://www.ausweisapp.bund.de/ausweisapp2/";
|
|
|
|
license = licenses.eupl12;
|
|
|
|
maintainers = with maintainers; [ b4dm4n ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|