biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / analysis / pev / default.nix
bloba46bc067f11b69bc0d75427ba76c35b69917820e
1 { lib, stdenv, openssl, fetchFromGitHub }:
3 stdenv.mkDerivation {
4   pname = "pev";
5   version = "unstable-2020-05-23";
7   src = fetchFromGitHub {
8     owner = "merces";
9     repo = "pev";
10     rev = "beec2b4f09585fea919ed41ce466dee06be0b6bf";
11     sha256 = "sha256-HrMbk9YbuqkoBBM7+rfXpqVEnd1rDl2rMePdcfU1WDg=";
12     fetchSubmodules = true;
13   };
15   buildInputs = [ openssl ];
17   enableParallelBuilding = true;
19   makeFlags = [ "prefix=$(out)" ];
21   installFlags = [ "prefix=$(out)" ];
23   meta = with lib; {
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;
29   };