pe-bear: init at 0.6.1

This commit is contained in:
Julian Stecklina 2022-11-26 23:30:25 +01:00
parent b863103eaf
commit 9ee630a93e
2 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,48 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, qtbase
, wrapQtAppsHook
}:
stdenv.mkDerivation rec {
pname = "pe-bear";
version = "0.6.1";
src = fetchFromGitHub {
owner = "hasherezade";
repo = "pe-bear";
rev = "v${version}";
sha256 = "jzgsjqic5rBsyuwJW9T44rKM8rKDce564VAogDvsLho=";
fetchSubmodules = true;
};
nativeBuildInputs = [
cmake
wrapQtAppsHook
];
buildInputs = [
qtbase
];
meta = with lib; {
description = "Portable Executable reversing tool with a friendly GUI";
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;
};
}

View File

@ -777,6 +777,8 @@ with pkgs;
pet = callPackage ../development/tools/pet { };
pe-bear = libsForQt5.callPackage ../applications/misc/pe-bear {};
pkger = callPackage ../development/libraries/pkger { };
tapview = callPackage ../development/tools/tapview { };