Merge pull request #203139 from blitz/pe-bear

pe-bear: init at 0.6.1
This commit is contained in:
Jacek Galowicz 2022-11-29 14:19:15 +01:00 committed by GitHub
commit 77b0d800b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -778,6 +778,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 { };