initial commit

This commit is contained in:
2024-10-23 18:15:05 +02:00
commit 346286b9e9
8 changed files with 355 additions and 0 deletions

32
dyldextractor.nix Normal file
View File

@@ -0,0 +1,32 @@
{
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";
};
}