Merge pull request #47138 from Jeschli/pev
pev: init at unstable-2018-07-22
This commit is contained in:
commit
e969e0f78a
@ -1847,6 +1847,11 @@
|
|||||||
github = "jerith666";
|
github = "jerith666";
|
||||||
name = "Matt McHenry";
|
name = "Matt McHenry";
|
||||||
};
|
};
|
||||||
|
jeschli = {
|
||||||
|
email = "jeschli@gmail.com";
|
||||||
|
github = "jeschli";
|
||||||
|
name = "Markus Hihn";
|
||||||
|
};
|
||||||
jethro = {
|
jethro = {
|
||||||
email = "jethrokuan95@gmail.com";
|
email = "jethrokuan95@gmail.com";
|
||||||
github = "jethrokuan";
|
github = "jethrokuan";
|
||||||
|
24
pkgs/development/tools/analysis/pev/default.nix
Normal file
24
pkgs/development/tools/analysis/pev/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -1487,6 +1487,8 @@ with pkgs;
|
|||||||
|
|
||||||
pbzx = callPackage ../tools/compression/pbzx { };
|
pbzx = callPackage ../tools/compression/pbzx { };
|
||||||
|
|
||||||
|
pev = callPackage ../development/tools/analysis/pev { };
|
||||||
|
|
||||||
photon = callPackage ../tools/networking/photon { };
|
photon = callPackage ../tools/networking/photon { };
|
||||||
|
|
||||||
playerctl = callPackage ../tools/audio/playerctl { };
|
playerctl = callPackage ../tools/audio/playerctl { };
|
||||||
|
Loading…
Reference in New Issue
Block a user