mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
28 lines
859 B
Nix
28 lines
859 B
Nix
{ lib, mkDerivation, fetchFromGitHub, cmake, pkg-config, pcsclite, qtsvg, qttools, qtwebsockets
|
|
, qtquickcontrols2, qtgraphicaleffects }:
|
|
|
|
mkDerivation rec {
|
|
pname = "AusweisApp2";
|
|
version = "1.22.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Governikus";
|
|
repo = "AusweisApp2";
|
|
rev = version;
|
|
sha256 = "sha256-Zh1rWMdRXPj/+80Sqvp9cbV5sDrNVBebPRGTTWM1DLk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [ qtsvg qttools qtwebsockets qtquickcontrols2 qtgraphicaleffects pcsclite ];
|
|
|
|
meta = with lib; {
|
|
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;
|
|
};
|
|
}
|