nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 33 lines 1.2 kB view raw
1{ lib, stdenv, fetchFromGitLab, cmake }: 2 3stdenv.mkDerivation rec { 4 pname = "arpa2cm"; 5 version = "1.0.4"; 6 7 src = fetchFromGitLab { 8 owner = "arpa2"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "sha256-2vb/7UL+uWGrQNh8yOZ3gih5G1/eOp064hF78SDsPGk="; 12 }; 13 14 nativeBuildInputs = [ cmake ]; 15 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 }; 33}