mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
rehex: init at 0.3.1
This commit is contained in:
parent
30e0f96474
commit
07540daf4d
39
pkgs/applications/editors/rehex/default.nix
Normal file
39
pkgs/applications/editors/rehex/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -6672,6 +6672,8 @@ in
|
||||
|
||||
remarshal = callPackage ../development/tools/remarshal { };
|
||||
|
||||
rehex = callPackage ../applications/editors/rehex { };
|
||||
|
||||
rig = callPackage ../tools/misc/rig {
|
||||
stdenv = gccStdenv;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user