arpa2common: format with nixfmt-rfc-style

This commit is contained in:
Mihai Fufezan 2024-09-12 19:52:09 +03:00 committed by Weijia Wang
parent d346ffcd17
commit 1e6b54aeee

View File

@ -1,18 +1,19 @@
{ lib
, stdenv
, fetchFromGitLab
, fetchpatch
, cmake
{
lib,
stdenv,
fetchFromGitLab,
fetchpatch,
cmake,
, arpa2cm
, doxygen
, e2fsprogs
, graphviz
, libsodium
, lmdb
, openssl
, pkg-config
, ragel
arpa2cm,
doxygen,
e2fsprogs,
graphviz,
libsodium,
lmdb,
openssl,
pkg-config,
ragel,
}:
stdenv.mkDerivation (finalAttrs: {
@ -51,8 +52,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
changelog = "https://gitlab.com/arpa2/arpa2common/-/blob/v${finalAttrs.version}/CHANGES";
description =
"ARPA2 ID and ACL libraries and other core data structures for ARPA2";
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
@ -61,7 +61,12 @@ stdenv.mkDerivation (finalAttrs: {
liberate users.
'';
homepage = "https://gitlab.com/arpa2/arpa2common";
license = with lib.licenses; [ bsd2 cc-by-sa-40 cc0 isc ];
license = with lib.licenses; [
bsd2
cc-by-sa-40
cc0
isc
];
maintainers = with lib.maintainers; [ fufexan ];
platforms = lib.platforms.linux;
};