blob: 7e8d03eddf63d80ada1b92250c5919ef0c3f73be (
plain)
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
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, autoconf-archive, pkgconfig,
gettext, asciidoc, doxygen, libxml2, libxslt, docbook_xsl, ... }:
stdenv.mkDerivation rec {
name = "libcoap-${version}";
version = "4.1.2";
src = fetchFromGitHub {
owner = "obgm";
repo = "libcoap";
rev = "v${version}";
sha256 = "0f0qq15480ja1s03vn8lzw4b3mzdgy46hng4aigi6i6qbzf29kf5";
};
patchPhase = ''
sed -i 's/$(A2X)/& --no-xmllint/' examples/Makefile.am
'';
buildInputs = [ gettext asciidoc doxygen libxml2.bin libxslt docbook_xsl];
nativeBuildInputs = [ autoreconfHook autoconf-archive pkgconfig ];
meta = {
description = "";
homepage = http://coap.technology;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ makefu ];
};
}
|