Merge pull request #81210 from B4dM4n/ausweisapp2
ausweisapp2: init at 1.20.0
This commit is contained in:
commit
166bf2314a
|
@ -271,6 +271,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) {
|
||||||
fullName = "European Union Public License 1.1";
|
fullName = "European Union Public License 1.1";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
eupl12 = spdx {
|
||||||
|
spdxId = "EUPL-1.2";
|
||||||
|
fullName = "European Union Public License 1.2";
|
||||||
|
};
|
||||||
|
|
||||||
fdl12 = spdx {
|
fdl12 = spdx {
|
||||||
spdxId = "GFDL-1.2-only";
|
spdxId = "GFDL-1.2-only";
|
||||||
fullName = "GNU Free Documentation License v1.2 only";
|
fullName = "GNU Free Documentation License v1.2 only";
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
{ stdenv, mkDerivation, fetchFromGitHub, cmake, pkgconfig, pcsclite, qtsvg, qttools, qtwebsockets
|
||||||
|
, qtquickcontrols2, qtgraphicaleffects }:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "AusweisApp2";
|
||||||
|
version = "1.20.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Governikus";
|
||||||
|
repo = "AusweisApp2";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "0qkwdaxhig4qjim7h20j6ln6w76ycppfc786nd8l69bd1qv46m40";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
|
|
||||||
|
buildInputs = [ qtsvg qttools qtwebsockets qtquickcontrols2 qtgraphicaleffects pcsclite ];
|
||||||
|
|
||||||
|
meta = with stdenv.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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -18544,6 +18544,8 @@ in
|
||||||
|
|
||||||
aesop = callPackage ../applications/office/aesop { };
|
aesop = callPackage ../applications/office/aesop { };
|
||||||
|
|
||||||
|
AusweisApp2 = libsForQt5.callPackage ../applications/misc/ausweisapp2 { };
|
||||||
|
|
||||||
avidemux = libsForQt5.callPackage ../applications/video/avidemux { };
|
avidemux = libsForQt5.callPackage ../applications/video/avidemux { };
|
||||||
|
|
||||||
avrdudess = callPackage ../applications/misc/avrdudess { };
|
avrdudess = callPackage ../applications/misc/avrdudess { };
|
||||||
|
|
Loading…
Reference in New Issue