mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
27 lines
621 B
Nix
27 lines
621 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
icu,
|
|
}:
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "actool";
|
|
version = "2.2.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "viraptor";
|
|
repo = "actool";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-dDTa6J2by6uvg4gecwCcBIRGesZ1F0gAXSLr+6DYjGc=";
|
|
};
|
|
|
|
cargoHash = "sha256-Q0fSZNXw/71kMemYzwVsBRFcAMNl4ItKu56YdB0AAdM=";
|
|
|
|
meta = {
|
|
description = "Apple's actool reimplementation";
|
|
homepage = "https://github.com/viraptor/actool";
|
|
license = [ lib.licenses.mit ];
|
|
mainProgram = "actool";
|
|
maintainers = [ lib.maintainers.viraptor ];
|
|
};
|
|
})
|