m 5 libcoap: init
This commit is contained in:
parent
fd0f1e3ab4
commit
0de1ab07ce
27
5pkgs/libcoap/default.nix
Normal file
27
5pkgs/libcoap/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue