nixpkgs/pkgs/by-name/im/imhex/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

90 lines
1.7 KiB
Nix
Raw Permalink Normal View History

2022-08-01 07:39:10 +00:00
{ lib
2023-05-09 10:27:05 +00:00
, stdenv
2022-08-01 07:39:10 +00:00
, cmake
, llvm
, fetchFromGitHub
, fetchpatch
2022-08-01 07:39:10 +00:00
, mbedtls
, gtk3
, pkg-config
, capstone
, dbus
, libGLU
, glfw3
, file
, perl
, python3
, jansson
, curl
, fmt_8
, nlohmann_json
, yara
2023-05-21 21:12:30 +00:00
, rsync
2022-08-01 07:39:10 +00:00
}:
let
2024-04-05 18:21:49 +00:00
version = "1.33.2";
patterns_version = "1.33.2";
2022-08-01 07:39:10 +00:00
patterns_src = fetchFromGitHub {
owner = "WerWolv";
repo = "ImHex-Patterns";
rev = "ImHex-v${patterns_version}";
2024-04-05 18:21:49 +00:00
hash = "sha256-5a6aFT8R8vMzPS+Y+fcDV5+olhioEpLjdMqa7qOyGsw=";
2022-08-01 07:39:10 +00:00
};
in
2023-05-09 10:27:05 +00:00
stdenv.mkDerivation rec {
2022-08-01 07:39:10 +00:00
pname = "imhex";
inherit version;
src = fetchFromGitHub {
fetchSubmodules = true;
owner = "WerWolv";
repo = pname;
rev = "v${version}";
2024-04-05 18:21:49 +00:00
hash = "sha256-8Ehpk0TjE4itQ7D9Nx74plYwABVufuYmxfxyuSqak1c=";
2022-08-01 07:39:10 +00:00
};
2023-05-21 21:12:30 +00:00
nativeBuildInputs = [ cmake llvm python3 perl pkg-config rsync ];
2022-08-01 07:39:10 +00:00
buildInputs = [
capstone
curl
dbus
file
fmt_8
glfw3
gtk3
jansson
libGLU
mbedtls
nlohmann_json
yara
];
cmakeFlags = [
"-DIMHEX_OFFLINE_BUILD=ON"
2023-05-21 21:12:30 +00:00
"-DUSE_SYSTEM_CAPSTONE=ON"
2022-08-01 07:39:10 +00:00
"-DUSE_SYSTEM_CURL=ON"
"-DUSE_SYSTEM_FMT=ON"
"-DUSE_SYSTEM_LLVM=ON"
"-DUSE_SYSTEM_NLOHMANN_JSON=ON"
"-DUSE_SYSTEM_YARA=ON"
];
2023-05-21 21:12:30 +00:00
# rsync is used here so we can not copy the _schema.json files
2022-08-01 07:39:10 +00:00
postInstall = ''
mkdir -p $out/share/imhex
2023-05-21 21:12:30 +00:00
rsync -av --exclude="*_schema.json" ${patterns_src}/{constants,encodings,includes,magic,patterns} $out/share/imhex
2022-08-01 07:39:10 +00:00
'';
meta = with lib; {
description = "Hex Editor for Reverse Engineers, Programmers and people who value their retinas when working at 3 AM";
homepage = "https://github.com/WerWolv/ImHex";
license = with licenses; [ gpl2Only ];
maintainers = with maintainers; [ kashw2 cafkafk ];
2022-08-01 07:39:10 +00:00
platforms = platforms.linux;
};
}