mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 00:04:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
34 lines
1.2 KiB
Nix
34 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitLab, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "arpa2cm";
|
|
version = "1.0.4";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "arpa2";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-2vb/7UL+uWGrQNh8yOZ3gih5G1/eOp064hF78SDsPGk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with lib; {
|
|
description = "CMake Module library for the ARPA2 project";
|
|
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";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ leenaars fufexan ];
|
|
};
|
|
}
|