ba979433dc
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/cjkfm1v60ykkmnqbpwc5ikhrrghklj1n-mynewt-newt-1.3.0-bin/bin/newt -h` got 0 exit code - ran `/nix/store/cjkfm1v60ykkmnqbpwc5ikhrrghklj1n-mynewt-newt-1.3.0-bin/bin/newt --help` got 0 exit code - ran `/nix/store/cjkfm1v60ykkmnqbpwc5ikhrrghklj1n-mynewt-newt-1.3.0-bin/bin/newt help` got 0 exit code - ran `/nix/store/cjkfm1v60ykkmnqbpwc5ikhrrghklj1n-mynewt-newt-1.3.0-bin/bin/newt version` and found version 1.3.0 - ran `/nix/store/cjkfm1v60ykkmnqbpwc5ikhrrghklj1n-mynewt-newt-1.3.0-bin/bin/newtmgr -h` got 0 exit code - ran `/nix/store/cjkfm1v60ykkmnqbpwc5ikhrrghklj1n-mynewt-newt-1.3.0-bin/bin/newtmgr --help` got 0 exit code - ran `/nix/store/cjkfm1v60ykkmnqbpwc5ikhrrghklj1n-mynewt-newt-1.3.0-bin/bin/newtmgr help` got 0 exit code - found 1.3.0 with grep in /nix/store/cjkfm1v60ykkmnqbpwc5ikhrrghklj1n-mynewt-newt-1.3.0-bin - found 1.3.0 in filename of file in /nix/store/cjkfm1v60ykkmnqbpwc5ikhrrghklj1n-mynewt-newt-1.3.0-bin cc "@pjones @ehmry @lethalman"
30 lines
927 B
Nix
30 lines
927 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "mynewt-newt-${version}";
|
|
version = "1.3.0";
|
|
|
|
goPackagePath = "mynewt.apache.org/newt";
|
|
goDeps = ./deps.nix;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "apache";
|
|
repo = "incubator-mynewt-newt";
|
|
rev = "mynewt_${builtins.replaceStrings ["."] ["_"] version}_tag";
|
|
sha256 = "0ia6q1wf3ki2yw8ngw5gnbdrb7268qwi078j05f8gs1sppb3g563";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://mynewt.apache.org/;
|
|
description = "Build and package management tool for embedded development.";
|
|
longDescription = ''
|
|
Apache Newt is a smart build and package management tool,
|
|
designed for C and C++ applications in embedded contexts. Newt
|
|
was developed as a part of the Apache Mynewt Operating System.
|
|
'';
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ pjones ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|