Merge pull request #124781 from rvarago/master
This commit is contained in:
commit
6eba26dcb5
3 changed files with 33 additions and 0 deletions
|
@ -8795,6 +8795,12 @@
|
|||
githubId = 506953;
|
||||
name = "Ruud van Asseldonk";
|
||||
};
|
||||
rvarago = {
|
||||
email = "rafael.varago@gmail.com";
|
||||
github = "rvarago";
|
||||
githubId = 7365864;
|
||||
name = "Rafael Varago";
|
||||
};
|
||||
rvl = {
|
||||
email = "dev+nix@rodney.id.au";
|
||||
github = "rvl";
|
||||
|
|
26
pkgs/development/tools/rust/cargo-bitbake/default.nix
Normal file
26
pkgs/development/tools/rust/cargo-bitbake/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib, pkg-config, rustPlatform, fetchFromGitHub, openssl }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cargo-bitbake";
|
||||
version = "0.3.15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "meta-rust";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1ffjkwaqvmyz374azrv6gna19z2fcg82is2k2n2gm50isbxw2aa5";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
cargoSha256 = "0mm6059wjh5p8923dwz55dpwi55gq2bcmpx7kn40pq5ppkiqjiw9";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Cargo extension that can generate BitBake recipes utilizing the classes from meta-rust";
|
||||
homepage = "https://github.com/meta-rust/cargo-bitbake";
|
||||
license = with licenses; [ mit asl20 ];
|
||||
maintainers = with maintainers; [ rvarago ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
|
@ -11692,6 +11692,7 @@ in
|
|||
cargo-bisect-rustc = callPackage ../development/tools/rust/cargo-bisect-rustc {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
cargo-bitbake = callPackage ../development/tools/rust/cargo-bitbake { };
|
||||
cargo-c = callPackage ../development/tools/rust/cargo-c {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue