diff options
Diffstat (limited to 'pkgs/tools/package-management/mynewt-newt/default.nix')
-rw-r--r-- | pkgs/tools/package-management/mynewt-newt/default.nix | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/tools/package-management/mynewt-newt/default.nix b/pkgs/tools/package-management/mynewt-newt/default.nix deleted file mode 100644 index 789a48655436..000000000000 --- a/pkgs/tools/package-management/mynewt-newt/default.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ 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 ]; - }; -} |