depot/third_party/nixpkgs/pkgs/development/libraries/arpa2common/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

60 lines
1.3 KiB
Nix

{ lib
, stdenv
, fetchFromGitLab
, cmake
, arpa2cm
, doxygen
, e2fsprogs
, graphviz
, lmdb
, openssl
, pkg-config
, ragel
}:
stdenv.mkDerivation rec {
pname = "arpa2common";
version = "2.2.18";
src = fetchFromGitLab {
owner = "arpa2";
repo = pname;
rev = "v${version}";
hash = "sha256-UpAVyDXCe07ZwjD307t6G9f/Nny4QYXxGxft1KsiYYg=";
};
nativeBuildInputs = [
cmake
arpa2cm
doxygen
graphviz
pkg-config
];
propagatedBuildInputs = [
e2fsprogs
lmdb
openssl
ragel
];
# the project uses single argument `printf` throughout the program
hardeningDisable = [ "format" ];
meta = {
description =
"ARPA2 ID and ACL libraries and other core data structures for ARPA2";
longDescription = ''
The ARPA2 Common Library package offers elementary services that can
benefit many software packages. They are designed to be easy to
include, with a minimum of dependencies. At the same time, they were
designed with the InternetWide Architecture in mind, thus helping to
liberate users.
'';
homepage = "https://gitlab.com/arpa2/arpa2common";
license = with lib.licenses; [ bsd2 cc-by-sa-40 cc0 isc ];
maintainers = with lib.maintainers; [ fufexan ];
platforms = lib.platforms.linux;
};
}