biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo-apk / default.nix
blob130894a72ade4793fcc263152a8c8eb22d38ef92
1 { lib
2 , stdenv
3 , rustPlatform
4 , fetchCrate
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "cargo-apk";
9   version = "0.9.6";
11   src = fetchCrate {
12     inherit pname version;
13     sha256 = "sha256-1vCrM+0SNefd7FrRXnSjLhM3/MSVJfcL4k1qAstX+/A=";
14   };
16   cargoSha256 = "sha256-rGn3MKbqIRWayarsgedIOhuTTl8lyRsRxn7BN5Id97w=";
18   meta = with lib; {
19     description = "Tool for creating Android packages";
20     mainProgram = "cargo-apk";
21     homepage = "https://github.com/rust-windowing/android-ndk-rs";
22     license = with licenses;[ mit asl20 ];
23     maintainers = with maintainers; [ nickcao ];
24   };