Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 26d3fbf21563
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0444c91a3b28
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 1, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    bagder Daniel Stenberg
    Copy the full SHA
    0444c91 View commit details
Showing with 13 additions and 7 deletions.
  1. +13 −7 pkgs/development/tools/analysis/pev/default.nix
20 changes: 13 additions & 7 deletions pkgs/development/tools/analysis/pev/default.nix
Original file line number Diff line number Diff line change
@@ -1,24 +1,30 @@
{ stdenv, openssl, fetchFromGitHub }:

stdenv.mkDerivation {
name = "pev-unstable-2018-07-22";
buildInputs = [ openssl ];
pname = "pev";
version = "unstable-2020-05-23";

src = fetchFromGitHub {
owner = "merces";
repo = "pev";
rev = "aa4ef7f";
sha256 = "00a3g486343lhqcsf4vrdy5xif6v3cgcf2y8yp5b96x15c0wid36";
rev = "beec2b4f09585fea919ed41ce466dee06be0b6bf";
sha256 = "sha256-HrMbk9YbuqkoBBM7+rfXpqVEnd1rDl2rMePdcfU1WDg=";
fetchSubmodules = true;
};

buildInputs = [ openssl ];

enableParallelBuilding = true;

makeFlags = [ "prefix=$(out)" ];

installFlags = [ "prefix=$(out)" ];

meta = with stdenv.lib; {
description = "A full-featured, open source, multiplatform command line toolkit to work with PE (Portable Executables) binaries";
homepage = "http://pev.sourceforge.net/";
homepage = "https://pev.sourceforge.net/";
license = licenses.gpl2;
maintainers = with maintainers; [ jeschli ];
platforms = platforms.linux;
maintainers = [ maintainers.jeschli ];
};

}