nixpkgs/pkgs/development/tools/analysis/pev/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
800 B
Nix
Raw Normal View History

{ lib, stdenv, openssl, fetchFromGitHub }:
2020-10-19 15:35:17 +02:00
2018-09-21 18:22:47 +02:00
stdenv.mkDerivation {
2020-10-19 15:35:17 +02:00
pname = "pev";
version = "unstable-2020-05-23";
2018-09-21 18:22:47 +02:00
src = fetchFromGitHub {
owner = "merces";
repo = "pev";
2020-10-19 15:35:17 +02:00
rev = "beec2b4f09585fea919ed41ce466dee06be0b6bf";
sha256 = "sha256-HrMbk9YbuqkoBBM7+rfXpqVEnd1rDl2rMePdcfU1WDg=";
2018-09-21 18:22:47 +02:00
fetchSubmodules = true;
};
2020-10-19 15:35:17 +02:00
buildInputs = [ openssl ];
enableParallelBuilding = true;
2018-09-21 18:22:47 +02:00
makeFlags = [ "prefix=$(out)" ];
2020-10-19 15:35:17 +02:00
2018-09-21 18:22:47 +02:00
installFlags = [ "prefix=$(out)" ];
meta = with lib; {
description = "A full-featured, open source, multiplatform command line toolkit to work with PE (Portable Executables) binaries";
2020-10-19 15:35:17 +02:00
homepage = "https://pev.sourceforge.net/";
2018-09-21 18:22:47 +02:00
license = licenses.gpl2;
2020-10-19 15:35:17 +02:00
maintainers = with maintainers; [ jeschli ];
2018-09-21 18:22:47 +02:00
platforms = platforms.linux;
};
}