biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / build-managers / arpa2cm / default.nix
blob47b1d502842b5257464970350d3a138c2616b441
1 { lib, stdenv, fetchFromGitLab, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "arpa2cm";
5   version = "1.0.4";
7   src = fetchFromGitLab {
8     owner = "arpa2";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-2vb/7UL+uWGrQNh8yOZ3gih5G1/eOp064hF78SDsPGk=";
12   };
14   nativeBuildInputs = [ cmake ];
16   meta = with lib; {
17     description = "CMake Module library for the ARPA2 project";
18     longDescription = ''
19       The CMake module library for the ARPA2 project, including the LillyDAP,
20       TLSPool and IdentityHub software stacks. Like the KDE Extra CMake Modules (ECM)
21       which is a large-ish collection of curated CMake modules of particular
22       interest to Qt-based and KDE Frameworks-based applications, the ARPA2
23       CMake Modules (ARPA2CM) is a collection of modules for the software
24       stack from the ARPA2 project. This is largely oriented towards
25       TLS, SSL, X509, DER and LDAP technologies. The ARPA2 CMake Modules
26       also include modules used for product release and deployment of
27       the ARPA2 software stack.
28     '';
29     homepage = "https://gitlab.com/arpa2/arpa2cm";
30     license = licenses.bsd2;
31     maintainers = with maintainers; [ leenaars fufexan ];
32   };