nixpkgs/pkgs/applications/misc/ausweisapp2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
859 B
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitHub, cmake, pkg-config, pcsclite, qtsvg, qttools, qtwebsockets
2020-02-27 20:43:54 +00:00
, qtquickcontrols2, qtgraphicaleffects }:
mkDerivation rec {
pname = "AusweisApp2";
2022-05-25 06:09:49 +01:00
version = "1.22.7";
2020-02-27 20:43:54 +00:00
src = fetchFromGitHub {
owner = "Governikus";
repo = "AusweisApp2";
rev = version;
2022-05-25 06:09:49 +01:00
sha256 = "sha256-A6nWH/WqFxTEIfOQcTRluAX0ORMNiyxfC/XLC8fmbdI=";
2020-02-27 20:43:54 +00:00
};
nativeBuildInputs = [ cmake pkg-config ];
2020-02-27 20:43:54 +00:00
buildInputs = [ qtsvg qttools qtwebsockets qtquickcontrols2 qtgraphicaleffects pcsclite ];
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;
};
}