depot/third_party/nixpkgs/pkgs/applications/networking/libcoap/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

31 lines
789 B
Nix

{ fetchFromGitHub, automake, autoconf, which, pkg-config, libtool, lib, stdenv }:
stdenv.mkDerivation rec {
pname = "libcoap";
version = "4.2.1";
src = fetchFromGitHub {
repo = "libcoap";
owner = "obgm";
rev = "v${version}";
fetchSubmodules = true;
sha256 = "1jkvha52lic13f13hnppizkl80bb2rciayb5hxici0gj6spphgha";
};
nativeBuildInputs = [
automake
autoconf
which
libtool
pkg-config
];
preConfigure = "./autogen.sh";
configureFlags = [
"--disable-documentation"
"--disable-shared"
];
meta = with lib; {
homepage = "https://github.com/obgm/libcoap";
description = "A CoAP (RFC 7252) implementation in C";
platforms = platforms.linux;
license = licenses.bsd2;
maintainers = [ maintainers.kmein ];
};
}