pe-parse: 1.2.0 -> 2.0.0

This commit is contained in:
Armeen Mahdian 2022-04-26 20:27:54 -05:00
parent 7c64d88385
commit 2ad0491625
2 changed files with 4 additions and 4 deletions

View file

@ -2,20 +2,20 @@
stdenv.mkDerivation rec {
pname = "pe-parse";
version = "1.2.0";
version = "2.0.0";
src = fetchFromGitHub {
owner = "trailofbits";
repo = "pe-parse";
rev = "v${version}";
sha256 = "1jvfjaiwddczjlx4xdhpbgwvvpycab7ix35lwp3wfy44hs6qpjqv";
hash = "sha256-HwWlMRhpB/sa/JRyAZF7LZzkXCCyuxB+gtDAfHt7e6k=";
};
nativeBuildInputs = [ cmake ];
doInstallCheck = true;
installCheckPhase = ''
$out/bin/dump-pe ../test/assets/example.exe
$out/bin/dump-pe ../tests/assets/example.exe
'';
meta = with lib; {

View file

@ -1,4 +1,4 @@
{ stdenv, lib, fetchFromGitHub, fetchpatch, cmake, gtest, openssl, pe-parse }:
{ stdenv, lib, fetchFromGitHub, cmake, gtest, openssl, pe-parse }:
stdenv.mkDerivation rec {
pname = "uthenticode";