rehex: init at 0.3.1

This commit is contained in:
Markus Hauck 2020-11-21 18:35:28 +01:00
parent 30e0f96474
commit 07540daf4d
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{ capstone
, fetchFromGitHub
, jansson
, lib
, stdenv
, wxGTK30
}:
stdenv.mkDerivation rec {
pname = "rehex";
version = "0.3.1";
src = fetchFromGitHub {
owner = "solemnwarning";
repo = pname;
rev = version;
sha256 = "1yj9a63j7534mmz8cl1ifg2wmgkxmk6z75jd8lkmc2sfrjbick32";
};
buildInputs = [
capstone
jansson
wxGTK30
];
makeFlags = [ "prefix=$(out)" ];
meta = with lib; {
description = "Reverse Engineers' Hex Editor";
longDescription = ''
A cross-platform (Windows, Linux, Mac) hex editor for reverse
engineering, and everything else.
'';
homepage = "https://github.com/solemnwarning/rehex";
license = licenses.gpl2;
maintainers = with maintainers; [ markus1189 ];
platforms = platforms.all;
};
}

View File

@ -6672,6 +6672,8 @@ in
remarshal = callPackage ../development/tools/remarshal { };
rehex = callPackage ../applications/editors/rehex { };
rig = callPackage ../tools/misc/rig {
stdenv = gccStdenv;
};