nixpkgs/pkgs/applications/networking/libcoap/default.nix

32 lines
789 B
Nix
Raw Permalink Normal View History

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