mynewt-newtmgr: init at 1.10.0

This commit is contained in:
bezmuth
2022-09-14 22:13:47 +01:00
parent cbc388fe46
commit 48947dded0
2 changed files with 35 additions and 0 deletions
@@ -0,0 +1,33 @@
{ lib
, buildGoModule
, fetchFromGitHub
, stdenv
}:
buildGoModule rec {
pname = "mynewt-newtmgr";
version = "1.10.0";
src = fetchFromGitHub {
owner = "apache";
repo = "mynewt-newtmgr";
rev = "mynewt_${builtins.replaceStrings ["."] ["_"] version}_tag";
sha256 = "sha256-fobaMkYLLK5qclogtClGdOjgTbmuse/72T3APNssYa4=";
};
vendorSha256 = "sha256-+vOZoueoMqlGnopLKc6pCgTmcgI34pxaMNbr6Y+JCfQ=";
doCheck = false;
meta = with lib; {
homepage = "https://mynewt.apache.org/";
description = "Tool to communicate with devices running Mynewt OS";
longDescription = ''
Newt Manager (newtmgr) is the application tool that enables a user to
communicate with and manage remote devices running the Mynewt OS
'';
license = licenses.asl20;
maintainers = with maintainers; [ bezmuth ];
platforms = platforms.unix;
};
}
+2
View File
@@ -35837,6 +35837,8 @@ with pkgs;
mynewt-newt = callPackage ../tools/package-management/mynewt-newt { };
mynewt-newtmgr = callPackage ../tools/misc/mynewt-newtmgr { };
mysides = callPackage ../os-specific/darwin/mysides { };
nar-serve = callPackage ../tools/nix/nar-serve { };