python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / blflash / default.nix
blobd8c1aec35a0c7bae0884248b4765f105e3427cc3
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "blflash";
5   version = "0.3.3";
7   src = fetchFromGitHub {
8     owner = "spacemeowx2";
9     repo = "blflash";
10     rev = "v${version}";
11     sha256 = "sha256-hPScmivtugtZm848Itzg4Tb9rppZny+rKi3IBuUxxQY=";
12   };
14   cargoSha256 = "sha256-/y3R8B2TOf8jeB9tcewoA9EGN6kj/EPMTjU6rfTF5Vc=";
16   meta = with lib; {
17     description = "An bl602 serial flasher written in Rust";
18     homepage = "https://github.com/spacemeowx2/blflash";
19     license = with licenses; [ mit asl20 ];
20     maintainers = with maintainers; [ _0x4A6F ];
21   };