2020-03-21 12:19:00 +01:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub, fetchpatch, Security }:
|
2017-05-17 18:30:12 +02:00
|
|
|
|
2020-01-11 14:48:36 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "mynewt-newt";
|
2020-01-11 14:48:36 +01:00
|
|
|
version = "1.7.0";
|
2017-05-17 18:30:12 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "apache";
|
2020-01-11 14:48:36 +01:00
|
|
|
repo = "mynewt-newt";
|
2017-05-17 18:30:12 +02:00
|
|
|
rev = "mynewt_${builtins.replaceStrings ["."] ["_"] version}_tag";
|
2020-01-11 14:48:36 +01:00
|
|
|
sha256 = "0rwn4ghh7kal8csxlh0w1p29b5m1nam9lkrxla5wdfhnzbsg8hfa";
|
2017-05-17 18:30:12 +02:00
|
|
|
};
|
|
|
|
|
2020-01-12 13:40:00 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/apache/mynewt-newt/commit/6a51e35565323ebe8feb8d1aa6e00960b6ce662e.patch;
|
|
|
|
sha256 = "186yha60jzcjq8r04w12rqqh3cin2w974l77hz2ixhmjzyr56wqv";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/apache/mynewt-newt/commit/7d4ef3fe65a9a83cc58e7bd973654ad235cc68bc.patch;
|
|
|
|
sha256 = "01scmq58bfr4c9icqzm79q7a55izflsb3mlx9xn0dv92m3mbprx7";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2020-01-11 14:48:36 +01:00
|
|
|
modSha256 = "068r8wa2pgd68jv50x0l1w8n96f97b3mgv7z6f85280ahgywaasq";
|
|
|
|
|
2020-03-21 12:19:00 +01:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
|
2017-05-17 18:30:12 +02:00
|
|
|
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 ];
|
2019-02-17 14:00:33 +01:00
|
|
|
platforms = platforms.unix;
|
2017-05-17 18:30:12 +02:00
|
|
|
};
|
|
|
|
}
|