-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rizin: init at unstable-2021-01-13 #109305
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,52 @@ | ||||||||||||||||||||||||||||||
{ stdenv | ||||||||||||||||||||||||||||||
, fetchFromGitHub | ||||||||||||||||||||||||||||||
, ninja, meson | ||||||||||||||||||||||||||||||
, libzip, openssl, xxHash, zlib | ||||||||||||||||||||||||||||||
}: | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
stdenv.mkDerivation { | ||||||||||||||||||||||||||||||
pname = "rizin"; | ||||||||||||||||||||||||||||||
version = "unstable-2021-01-13"; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
src = fetchFromGitHub { | ||||||||||||||||||||||||||||||
owner = "rizinorg"; | ||||||||||||||||||||||||||||||
repo = "rizin"; | ||||||||||||||||||||||||||||||
rev = "ca2471ae9596176c656f065ed74c480f13784e1b"; | ||||||||||||||||||||||||||||||
sha256 = "0qigy1px0jy74c5ig73dc2fqjcy6vcy76i25dx9r3as6zfpkkaxj"; | ||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. They still rely on git to set versions etc: In our radare2 build we generate those automatically (see python script). |
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
postPatch = let | ||||||||||||||||||||||||||||||
capstone = fetchFromGitHub { | ||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please move this to a let in before mkDerivation. |
||||||||||||||||||||||||||||||
owner = "aquynh"; | ||||||||||||||||||||||||||||||
repo = "capstone"; | ||||||||||||||||||||||||||||||
# version from $sourceRoot/shlr/Makefile | ||||||||||||||||||||||||||||||
rev = "4.0.2"; | ||||||||||||||||||||||||||||||
sha256 = "0y5g74yjyliciawpn16zhdwya7bd3d7b1cccpcccc2wg8vni1k2w"; | ||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||
in '' | ||||||||||||||||||||||||||||||
mkdir -p build/shlr | ||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||
cp -r ${capstone} capstone-${capstone.rev} | ||||||||||||||||||||||||||||||
chmod -R +w capstone-${capstone.rev} | ||||||||||||||||||||||||||||||
tar -czvf shlr/capstone-${capstone.rev}.tar.gz capstone-${capstone.rev} | ||||||||||||||||||||||||||||||
''; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
configureFlags = [ | ||||||||||||||||||||||||||||||
"--with-syszip" | ||||||||||||||||||||||||||||||
"--with-sysxxhash" | ||||||||||||||||||||||||||||||
"--with-openssl" | ||||||||||||||||||||||||||||||
]; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
enableParallelBuilding = true; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
buildInputs = [ openssl zlib ]; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
propagatedBuildInputs = [ libzip xxHash ]; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
meta = { | ||||||||||||||||||||||||||||||
description = "unix-like reverse engineering framework and commandline tools"; | ||||||||||||||||||||||||||||||
homepage = "https://rizin.re/"; | ||||||||||||||||||||||||||||||
license = stdenv.lib.licenses.lgpl3Only; | ||||||||||||||||||||||||||||||
maintainers = with stdenv.lib.maintainers; [ pamplemousse ]; | ||||||||||||||||||||||||||||||
platforms = with stdenv.lib.platforms; linux; | ||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||
Comment on lines
+45
to
+51
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.