depot/third_party/nixpkgs/pkgs/development/tools/analysis/pev/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
720 B
Nix

{ stdenv, openssl, fetchFromGitHub }:
stdenv.mkDerivation {
name = "pev-unstable-2018-07-22";
buildInputs = [ openssl ];
src = fetchFromGitHub {
owner = "merces";
repo = "pev";
rev = "aa4ef7f";
sha256 = "00a3g486343lhqcsf4vrdy5xif6v3cgcf2y8yp5b96x15c0wid36";
fetchSubmodules = true;
};
makeFlags = [ "prefix=$(out)" ];
installFlags = [ "prefix=$(out)" ];
meta = with stdenv.lib; {
description = "pev is a full-featured, open source, multiplatform command line toolkit to work with PE (Portable Executables) binaries.";
homepage = "http://pev.sourceforge.net/";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.jeschli ];
};
}