mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 22:20:51 +00:00
Merge pull request #111602 from 0x4A6F/master-blflash
blflash: init at 0.3.2
This commit is contained in:
commit
025b801914
22
pkgs/tools/misc/blflash/default.nix
Normal file
22
pkgs/tools/misc/blflash/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "blflash";
|
||||
version = "0.3.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "spacemeowx2";
|
||||
repo = "blflash";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-+2ncK1ibtQwlBREw4Yiqj4vFvAcZqjkoTBtBdAAUoRg=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-tt9jfcoEw/HQ0/qU4lhbqKtIw/lthDTcyf/3HYQNPEY=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "An bl602 serial flasher written in Rust";
|
||||
homepage = "https://github.com/spacemeowx2/blflash";
|
||||
license = with licenses; [ mit asl20 ];
|
||||
maintainers = with maintainers; [ _0x4A6F ];
|
||||
};
|
||||
}
|
|
@ -21545,6 +21545,8 @@ in
|
|||
inherit (darwin.apple_sdk.frameworks) Cocoa CoreGraphics ForceFeedback OpenAL OpenGL;
|
||||
};
|
||||
|
||||
blflash = callPackage ../tools/misc/blflash { };
|
||||
|
||||
blogc = callPackage ../applications/misc/blogc { };
|
||||
|
||||
bluefish = callPackage ../applications/editors/bluefish {
|
||||
|
|
Loading…
Reference in a new issue