2021-08-18 13:19:15 +00:00
|
|
|
{ lib, stdenv, fetchFromGitLab, cmake }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "arpa2cm";
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "1.0.4";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-08-18 13:19:15 +00:00
|
|
|
src = fetchFromGitLab {
|
2020-04-24 23:36:52 +00:00
|
|
|
owner = "arpa2";
|
2022-08-12 12:06:08 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-2vb/7UL+uWGrQNh8yOZ3gih5G1/eOp064hF78SDsPGk=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "CMake Module library for the ARPA2 project";
|
2021-08-18 13:19:15 +00:00
|
|
|
longDescription = ''
|
|
|
|
The CMake module library for the ARPA2 project, including the LillyDAP,
|
|
|
|
TLSPool and IdentityHub software stacks. Like the KDE Extra CMake Modules (ECM)
|
|
|
|
which is a large-ish collection of curated CMake modules of particular
|
|
|
|
interest to Qt-based and KDE Frameworks-based applications, the ARPA2
|
|
|
|
CMake Modules (ARPA2CM) is a collection of modules for the software
|
|
|
|
stack from the ARPA2 project. This is largely oriented towards
|
|
|
|
TLS, SSL, X509, DER and LDAP technologies. The ARPA2 CMake Modules
|
|
|
|
also include modules used for product release and deployment of
|
|
|
|
the ARPA2 software stack.
|
|
|
|
'';
|
|
|
|
homepage = "https://gitlab.com/arpa2/arpa2cm";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.bsd2;
|
2021-08-18 13:19:15 +00:00
|
|
|
maintainers = with maintainers; [ leenaars fufexan ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|