1 { lib, stdenv, openssl, fetchFromGitHub }:
5 version = "unstable-2020-05-23";
7 src = fetchFromGitHub {
10 rev = "beec2b4f09585fea919ed41ce466dee06be0b6bf";
11 sha256 = "sha256-HrMbk9YbuqkoBBM7+rfXpqVEnd1rDl2rMePdcfU1WDg=";
12 fetchSubmodules = true;
15 buildInputs = [ openssl ];
17 enableParallelBuilding = true;
19 makeFlags = [ "prefix=$(out)" ];
21 installFlags = [ "prefix=$(out)" ];
24 description = "A full-featured, open source, multiplatform command line toolkit to work with PE (Portable Executables) binaries";
25 homepage = "https://pev.sourceforge.net/";
26 license = licenses.gpl2;
27 maintainers = with maintainers; [ jeschli ];
28 platforms = platforms.linux;