13 stdenv.mkDerivation (finalAttrs: {
17 src = fetchFromGitHub {
20 rev = "RELEASE.${finalAttrs.version}";
21 hash = "sha256-Ty6j0Fl2smMGxp+1nnD3Fu83bn19gqtRKSA1wDgNZes=";
24 buildInputs = [ openssl qtbase ];
34 # Needed for qcollectiongenerator (see https://github.com/NixOS/nixpkgs/pull/92710)
35 QT_PLUGIN_PATH = "${qtbase}/${qtbase.qtPluginPrefix}";
37 enableParallelBuilding = true;
40 description = "X509 certificate generation tool, handling RSA, DSA and EC keys, certificate signing requests (PKCS#10) and CRLs";
42 homepage = "https://hohnstaedt.de/xca/";
43 license = licenses.bsd3;
44 maintainers = with maintainers; [ offline peterhoeg ];
45 inherit (qtbase.meta) platforms;