mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
37 lines
875 B
Nix
37 lines
875 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, ninja, mbedtls, sqlite }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "nanomq";
|
|
version = "0.14.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "emqx";
|
|
repo = "nanomq";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-rWLsH01XHtN/UlyOiMFI2UECuxodCkCVR/L72HIfNtY=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace "DESTINATION /etc" "DESTINATION $out/etc"
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake ninja ];
|
|
|
|
buildInputs = [ mbedtls sqlite ];
|
|
|
|
cmakeFlags = [
|
|
"-DNNG_ENABLE_TLS=ON"
|
|
"-DNNG_ENABLE_SQLITE=ON"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "An ultra-lightweight and blazing-fast MQTT broker for IoT edge";
|
|
homepage = "https://nanomq.io/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ sikmir ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|