nixpkgs/pkgs/development/tools/rust/svd2rust/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
727 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchCrate, stdenv, libiconv }:
2019-01-05 20:01:29 +00:00
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "svd2rust";
2022-01-18 15:48:32 +00:00
version = "0.21.0";
2019-01-05 20:01:29 +00:00
src = fetchCrate {
inherit pname version;
2022-01-18 15:48:32 +00:00
sha256 = "0mxzbbxrg1jysxpjqcvgwwmh8qf0lyf64fl1gxxp0whph0x279qj";
2019-01-05 20:01:29 +00:00
};
2022-01-18 15:48:32 +00:00
cargoSha256 = "0kvya6swx1nsxxlhn2w8x4dhl4j3v56jxqr2h259cx6lzv3xjhin";
2019-01-05 20:01:29 +00:00
2021-05-18 18:01:24 +00:00
buildInputs = lib.optional stdenv.isDarwin libiconv;
meta = with lib; {
2019-01-05 20:01:29 +00:00
description = "Generate Rust register maps (`struct`s) from SVD files";
homepage = "https://github.com/rust-embedded/svd2rust";
changelog = "https://github.com/rust-embedded/svd2rust/blob/v${version}/CHANGELOG.md";
2019-01-05 20:01:29 +00:00
license = with licenses; [ mit asl20 ];
maintainers = with maintainers; [ ];
2019-01-05 20:01:29 +00:00
};
}