libksba 1.6.2 -> 1.6.3 https://repology.org/metapackage/libksba/versions attrpath: libksba Checking auto update branch... No auto update branch exists Old version 1.6.2" not present in staging derivation file with contents: { buildPackages, lib, stdenv, fetchurl, gettext, libgpg-error }: stdenv.mkDerivation rec { pname = "libksba"; version = "1.6.3"; src = fetchurl { url = "mirror://gnupg/libksba/libksba-${version}.tar.bz2"; hash = "sha256-P3LGjbMJceu/FDZ1J3GUI/Ck1fgQP8n0ocAan6RA3lw="; }; outputs = [ "out" "dev" "info" ]; buildInputs = [ gettext ]; propagatedBuildInputs = [ libgpg-error ]; depsBuildBuild = [ buildPackages.stdenv.cc ]; configureFlags = [ "--with-libgpg-error-prefix=${libgpg-error.dev}" ]; postInstall = '' mkdir -p $dev/bin mv $out/bin/*-config $dev/bin/ rmdir --ignore-fail-on-non-empty $out/bin ''; meta = with lib; { homepage = "https://www.gnupg.org"; description = "CMS and X.509 access library"; platforms = platforms.all; maintainers = with maintainers; [ ]; license = licenses.lgpl3; }; }