Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
1.0 KiB
Nix
52 lines
1.0 KiB
Nix
{
|
|
fetchFromGitHub,
|
|
automake,
|
|
autoconf,
|
|
which,
|
|
pkg-config,
|
|
libtool,
|
|
lib,
|
|
stdenv,
|
|
gnutls,
|
|
asciidoc,
|
|
doxygen,
|
|
withTLS ? true,
|
|
withDocs ? true,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "libcoap";
|
|
version = "4.3.5";
|
|
src = fetchFromGitHub {
|
|
repo = "libcoap";
|
|
owner = "obgm";
|
|
rev = "v${version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-QNrsR6VarZ2favvTZ9pMhVafwF2fOjYLKcyNqZyUl6s=";
|
|
};
|
|
nativeBuildInputs = [
|
|
automake
|
|
autoconf
|
|
which
|
|
libtool
|
|
pkg-config
|
|
]
|
|
++ lib.optional withTLS gnutls
|
|
++ lib.optionals withDocs [
|
|
doxygen
|
|
asciidoc
|
|
];
|
|
preConfigure = "./autogen.sh";
|
|
configureFlags = [
|
|
"--disable-shared"
|
|
]
|
|
++ lib.optional (!withDocs) "--disable-documentation"
|
|
++ lib.optional withTLS "--enable-dtls";
|
|
meta = with lib; {
|
|
homepage = "https://github.com/obgm/libcoap";
|
|
description = "CoAP (RFC 7252) implementation in C";
|
|
platforms = platforms.unix;
|
|
license = licenses.bsd2;
|
|
maintainers = [ maintainers.kmein ];
|
|
};
|
|
}
|