Files
rev-eng-nix-shell/dyldextractor.nix
2024-10-23 18:15:05 +02:00

33 lines
671 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
progressbar2,
capstone
}:
buildPythonPackage rec {
pname = "dyldextractor";
version = "v2.2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "arandomdev";
repo = "dyldextractor";
rev = "d44855e8ae51c328847e500b5f52bacf563eb08a";
hash = "sha256-cIzQsEADveuof0L5a5CXC0KfdH9Ydxo7ajrPwHMWD6k=";
};
build-system = [ setuptools ];
dependencies = [ progressbar2 capstone ];
pythonRelaxDeps = [ "capstone" ];
meta = with lib; {
description = "Extract Binaries from Apple's Dyld Shared Cache";
homepage = "https://github.com/arandomdev/DyldExtractor";
};
}