11 stdenv.mkDerivation rec {
15 src = fetchFromGitHub {
19 hash = "sha256-BBYfJ2j2IQkbluR3HQjEh1zFWPgOVX6kfyI0jG741Y4=";
25 ] ++ lib.optionals mbedtlsSupport [ mbedtls ];
27 buildInputs = lib.optionals mbedtlsSupport [ mbedtls ];
31 ++ lib.optionals mbedtlsSupport [
32 "-DMBEDTLS_ROOT_DIR=${mbedtls}"
37 homepage = "https://nng.nanomsg.org/";
38 description = "Nanomsg next generation";
39 license = licenses.mit;
40 mainProgram = "nngcat";
41 platforms = platforms.unix;
42 maintainers = with maintainers; [ nviets ];