nixpkgs/pkgs/tools/package-management/mynewt-newt/default.nix
Fabián Heredia Montiel ff323ed355 treewide: vendorSha256 → vendorHash
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
2023-09-13 01:03:44 -06:00

38 lines
1.1 KiB
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, stdenv
}:
buildGoModule rec {
pname = "mynewt-newt";
version = "1.10.0";
src = fetchFromGitHub {
owner = "apache";
repo = "mynewt-newt";
rev = "mynewt_${builtins.replaceStrings ["."] ["_"] version}_tag";
sha256 = "sha256-HWZDs4kYWveEqzPRNGNbghc1Yg6hy/Pq3eU5jW8WdHc=";
};
vendorHash = "sha256-/LK+NSs7YZkw6TRvBQcn6/SszIwAfXN0rt2AKSBV7CE=";
doCheck = false;
# CGO_ENABLED=0 required for mac - "error: 'TARGET_OS_MAC' is not defined, evaluates to 0"
# https://github.com/shirou/gopsutil/issues/976
CGO_ENABLED = if stdenv.isLinux then 1 else 0;
meta = with 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 ];
};
}