Skip to content

Commit

Permalink
apftool-rs: init at unstable-2024-01-05
Browse files Browse the repository at this point in the history
  • Loading branch information
colemickens committed Nov 8, 2024
1 parent ff5eb0c commit 4735dd1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/by-name/ap/apftool-rs/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{ lib
, fetchFromGitHub
, rustPlatform
}:

rustPlatform.buildRustPackage rec {
pname = "apftool-rs";
version = "unstable-2024-01-05";

src = fetchFromGitHub {
owner = "suyulin";
repo = "apftool-rs";
rev = "92d8a1b88cb79a53f9e4a70fecee481710d3565b";
hash = "sha256-0+eKxaLKZBRLdydXxUbifFfFncAbthUn7AB8QieWaXM=";
};

cargoHash = "sha256-tijhuiuJhOirnRdDXRNafh3SxBmX65zPE5HJnHBUj30=";

meta = {
description = "About Tools for Rockchip image unpack tool";
mainProgram = "apftool-rs";
homepage = "https://github.com/suyulin/apftool-rs";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ colemickens ];
platforms = lib.platforms.linux;
};
}

0 comments on commit 4735dd1

Please sign in to comment.