nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at netboot-syslinux-multiplatform 24 lines 565 B view raw
1{ lib 2, stdenv 3, rustPlatform 4, fetchCrate 5}: 6 7rustPlatform.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}