auth0-cli: 1.8.0 -> 1.9.0 (#379965)
[NixPkgs.git] / pkgs / by-name / ap / apftool-rs / package.nix
blob260f7af595e1349bd4d5c806d58f6ad4db828c95
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "apftool-rs";
9   version = "0-unstable-2024-01-05";
11   src = fetchFromGitHub {
12     owner = "suyulin";
13     repo = "apftool-rs";
14     rev = "92d8a1b88cb79a53f9e4a70fecee481710d3565b";
15     hash = "sha256-0+eKxaLKZBRLdydXxUbifFfFncAbthUn7AB8QieWaXM=";
16   };
18   useFetchCargoVendor = true;
19   cargoHash = "sha256-IJEEnNIW44kItB19U1lNGi1cHpVGaGHQZt2kgAJFkjU=";
21   meta = {
22     description = "About Tools for Rockchip image unpack tool";
23     mainProgram = "apftool-rs";
24     homepage = "https://github.com/suyulin/apftool-rs";
25     license = lib.licenses.asl20;
26     maintainers = with lib.maintainers; [ colemickens ];
27     platforms = lib.platforms.linux;
28   };