mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
libcoap: init at 4.2.0
This commit is contained in:
parent
f1b3f225cf
commit
eb8a9f68cf
31
pkgs/applications/networking/libcoap/default.nix
Normal file
31
pkgs/applications/networking/libcoap/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ fetchFromGitHub, automake, autoconf, which, pkgconfig, libtool, stdenv }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libcoap";
|
||||
version = "4.2.0";
|
||||
src = fetchFromGitHub {
|
||||
repo = "libcoap";
|
||||
owner = "obgm";
|
||||
rev = "v${version}";
|
||||
fetchSubmodules = true;
|
||||
sha256 = "0mmvkq72i4rda6b7g93qrwg2nwh2rvkq4xw70yppj51hsdrnpfl7";
|
||||
};
|
||||
nativeBuildInputs = [
|
||||
automake
|
||||
autoconf
|
||||
which
|
||||
libtool
|
||||
pkgconfig
|
||||
];
|
||||
preConfigure = "./autogen.sh";
|
||||
configureFlags = [
|
||||
"--disable-documentation"
|
||||
"--disable-shared"
|
||||
];
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/obgm/libcoap";
|
||||
description = "A CoAP (RFC 7252) implementation in C";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.bsd2;
|
||||
maintainers = [ maintainers.kmein ];
|
||||
};
|
||||
}
|
@ -4021,6 +4021,8 @@ in
|
||||
|
||||
libcloudproviders = callPackage ../development/libraries/libcloudproviders { };
|
||||
|
||||
libcoap = callPackage ../applications/networking/libcoap {};
|
||||
|
||||
libcroco = callPackage ../development/libraries/libcroco { };
|
||||
|
||||
libcryptui = callPackage ../development/libraries/libcryptui { };
|
||||
|
Loading…
Reference in New Issue
Block a user