initial commit
This commit is contained in:
32
dyldextractor.nix
Normal file
32
dyldextractor.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user