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

32 lines
818 B
Nix
Raw Normal View History

2019-01-05 20:01:29 +00:00
{ stdenv, fetchFromGitHub, rustPlatform }:
with rustPlatform;
buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "svd2rust";
2019-01-05 20:01:29 +00:00
version = "0.14.0";
src = fetchFromGitHub {
owner = "rust-embedded";
repo = "svd2rust";
rev = "v${version}";
sha256 = "1a0ldmjkhyv5c52gcq8p8avkj0cgj1b367w6hm85bxdf5j4y8rra";
};
cargoPatches = [ ./cargo-lock.patch ];
# Delete this on next update; see #79975 for details
legacyCargoFetcher = true;
cargoSha256 = "03rfb8swxbcc9qm4mhxz5nm4b1gw7g7389wrdc91abxl4mw733ac";
2019-01-05 20:01:29 +00:00
# doc tests fail due to missing dependency
doCheck = false;
meta = with stdenv.lib; {
description = "Generate Rust register maps (`struct`s) from SVD files";
homepage = https://github.com/rust-embedded/svd2rust;
license = with licenses; [ mit asl20 ];
platforms = platforms.all;
};
}