aerospike: 8.0.0.1 -> 8.0.0.2 (#380565)
[NixPkgs.git] / pkgs / by-name / es / esp-generate / package.nix
blobbd0b5372e44c0bc551f0b05c25455edf615425a4
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "esp-generate";
9   version = "0.2.1";
11   src = fetchFromGitHub {
12     owner = "esp-rs";
13     repo = "esp-generate";
14     rev = "v${version}";
15     hash = "sha256-o8b30xCkHWdfGhI+8KXVj1U8xJtt7YsRcKBL6FxUVW8=";
16   };
18   useFetchCargoVendor = true;
19   cargoHash = "sha256-eTXSVeFzlQHBPWPRgt//uvtsPal4KeD2Rk7Sevkx/LE=";
21   meta = {
22     description = "Template generation tool to create no_std applications targeting Espressif's chips";
23     homepage = "https://github.com/esp-rs/esp-generate";
24     license = with lib.licenses; [
25       mit # or
26       asl20
27     ];
28     maintainers = [ lib.maintainers.eymeric ];
29   };