esp-generate: init at 0.1.0 (#356173)

This commit is contained in:
Arne Keller
2024-12-20 11:08:50 +01:00
committed by GitHub
+29
View File
@@ -0,0 +1,29 @@
{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "esp-generate";
version = "0.1.0";
src = fetchFromGitHub {
owner = "esp-rs";
repo = "esp-generate";
rev = "v${version}";
hash = "sha256-vfHORu0C3vK7a9jv1Wj+XjqM7mR8/t0N4x3hfARdxaw=";
};
cargoHash = "sha256-hYgEZvRXXhgzuNuSu4ytrlWDwlVYX6R46agu+BxrbEo=";
meta = {
description = "Template generation tool to create no_std applications targeting Espressif's chips";
homepage = "https://github.com/esp-rs/esp-generate";
license = with lib.licenses; [
mit # or
asl20
];
maintainers = [ lib.maintainers.eymeric ];
};
}