nixpkgs/pkgs/by-name/ac/actool/package.nix
Stanisław Pitucha a6ee667a25 actool: 2.1.2 -> 2.2.4
Better glass icon support

(cherry picked from commit 8e1a5521ca)
2026-06-03 16:25:49 +03:00

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 ];
};
})