Merge pull request #203898 from NickCao/cargo-apk

cargo-apk: init at 0.9.6

authored by Mario Rodas and committed by GitHub 6654c1d5 39f399f6

+25
+24
pkgs/development/tools/rust/cargo-apk/default.nix
··· 1 + { lib 2 + , stdenv 3 + , rustPlatform 4 + , fetchCrate 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "cargo-apk"; 9 + version = "0.9.6"; 10 + 11 + src = fetchCrate { 12 + inherit pname version; 13 + sha256 = "sha256-1vCrM+0SNefd7FrRXnSjLhM3/MSVJfcL4k1qAstX+/A="; 14 + }; 15 + 16 + cargoSha256 = "sha256-rGn3MKbqIRWayarsgedIOhuTTl8lyRsRxn7BN5Id97w="; 17 + 18 + meta = with lib; { 19 + description = "Tool for creating Android packages"; 20 + homepage = "https://github.com/rust-windowing/android-ndk-rs"; 21 + license = with licenses;[ mit asl20 ]; 22 + maintainers = with maintainers; [ nickcao ]; 23 + }; 24 + }
+1
pkgs/top-level/all-packages.nix
··· 15185 15185 15186 15186 cargo-about = callPackage ../development/tools/rust/cargo-about { }; 15187 15187 cargo-all-features = callPackage ../development/tools/rust/cargo-all-features { }; 15188 + cargo-apk = callPackage ../development/tools/rust/cargo-apk { }; 15188 15189 cargo-audit = callPackage ../development/tools/rust/cargo-audit { 15189 15190 inherit (darwin.apple_sdk.frameworks) Security; 15190 15191 };