Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
872 B
Nix
51 lines
872 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
qtbase,
|
|
wrapQtAppsHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pe-bear";
|
|
version = "0.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hasherezade";
|
|
repo = "pe-bear";
|
|
rev = "v${version}";
|
|
hash = "sha256-jWRO0vO601IijFo7nu0SMF8inEXWLzv+Ni1nlJfGqhQ=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Portable Executable reversing tool with a friendly GUI";
|
|
mainProgram = "PE-bear";
|
|
homepage = "https://hshrzd.wordpress.com/pe-bear/";
|
|
|
|
license = [
|
|
# PE-Bear
|
|
licenses.gpl2Only
|
|
|
|
# Vendored capstone
|
|
licenses.bsd3
|
|
|
|
# Vendored bearparser
|
|
licenses.bsd2
|
|
];
|
|
|
|
maintainers = with maintainers; [ blitz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|