about summary refs log tree commit diff
path: root/pkgs/applications/networking/libcoap/default.nix
blob: 643941b5fa897e8ccd417eb5c8ecba844cec8c4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ 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 ];
  };
}