lol

pev: 2018-07-22 -> 2020-05-23

+13 -7
+13 -7
pkgs/development/tools/analysis/pev/default.nix
··· 1 1 { stdenv, openssl, fetchFromGitHub }: 2 + 2 3 stdenv.mkDerivation { 3 - name = "pev-unstable-2018-07-22"; 4 - buildInputs = [ openssl ]; 4 + pname = "pev"; 5 + version = "unstable-2020-05-23"; 6 + 5 7 src = fetchFromGitHub { 6 8 owner = "merces"; 7 9 repo = "pev"; 8 - rev = "aa4ef7f"; 9 - sha256 = "00a3g486343lhqcsf4vrdy5xif6v3cgcf2y8yp5b96x15c0wid36"; 10 + rev = "beec2b4f09585fea919ed41ce466dee06be0b6bf"; 11 + sha256 = "sha256-HrMbk9YbuqkoBBM7+rfXpqVEnd1rDl2rMePdcfU1WDg="; 10 12 fetchSubmodules = true; 11 13 }; 12 14 15 + buildInputs = [ openssl ]; 16 + 17 + enableParallelBuilding = true; 18 + 13 19 makeFlags = [ "prefix=$(out)" ]; 20 + 14 21 installFlags = [ "prefix=$(out)" ]; 15 22 16 23 meta = with stdenv.lib; { 17 24 description = "A full-featured, open source, multiplatform command line toolkit to work with PE (Portable Executables) binaries"; 18 - homepage = "http://pev.sourceforge.net/"; 25 + homepage = "https://pev.sourceforge.net/"; 19 26 license = licenses.gpl2; 27 + maintainers = with maintainers; [ jeschli ]; 20 28 platforms = platforms.linux; 21 - maintainers = [ maintainers.jeschli ]; 22 29 }; 23 - 24 30 }