ausweisapp 2.0.3 -> 2.1.0 https://repology.org/project/ausweisapp2/versions attrpath: ausweisapp Checking auto update branch... No auto update branch exists Old version 2.0.3" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, testers, cmake, pkg-config, wrapQtAppsHook, pcsclite, qtscxml, qtsvg, qttools, qtwayland, qtwebsockets, }: stdenv.mkDerivation (finalAttrs: { pname = "ausweisapp"; version = "2.1.0"; src = fetchFromGitHub { owner = "Governikus"; repo = "AusweisApp2"; rev = finalAttrs.version; hash = "sha256-wgVu5Yr65Gu1z5SEWy5l4B6UiI5bIobBfZLhL7s+SRE="; }; nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ]; # The build scripts copy the entire translations directory from Qt # which ends up being read-only because it's in the store. preBuild = '' chmod +w resources/translations ''; buildInputs = [ pcsclite qtscxml qtsvg qttools qtwayland qtwebsockets ]; passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; command = "QT_QPA_PLATFORM=offscreen ${finalAttrs.meta.mainProgram} --version"; }; meta = { description = "Official authentication app for German ID card and residence permit"; downloadPage = "https://github.com/Governikus/AusweisApp2/releases"; homepage = "https://www.ausweisapp.bund.de/open-source-software"; license = lib.licenses.eupl12; mainProgram = "AusweisApp"; maintainers = with lib.maintainers; [b4dm4n]; platforms = lib.platforms.linux; }; })