commit
77b0d800b9
2 changed files with 50 additions and 0 deletions
48
pkgs/applications/misc/pe-bear/default.nix
Normal file
48
pkgs/applications/misc/pe-bear/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue