lol

pe-parse: 2.0.0 -> 2.1.1

Diff: https://github.com/trailofbits/pe-parse/compare/v2.0.0...v2.1.1

Changelog: https://github.com/trailofbits/pe-parse/releases/tag/v2.1.1

+4 -10
+4 -10
pkgs/development/libraries/pe-parse/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, cmake, fetchpatch }: 1 + { lib, stdenv, fetchFromGitHub, cmake }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pe-parse"; 5 - version = "2.0.0"; 5 + version = "2.1.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "trailofbits"; 9 9 repo = "pe-parse"; 10 10 rev = "v${version}"; 11 - hash = "sha256-HwWlMRhpB/sa/JRyAZF7LZzkXCCyuxB+gtDAfHt7e6k="; 11 + hash = "sha256-XegSZWRoQg6NEWuTSFI1RMvN3GbpLDrZrloPU2XdK2M="; 12 12 }; 13 13 14 - patches = [ 15 - (fetchpatch { 16 - url = "https://github.com/trailofbits/pe-parse/commit/eecdb3d36eb44e306398a2e66e85490f9bdcc74c.patch"; 17 - hash = "sha256-pd6D/JMctiQqJxnJU9Nm/GDVf4/CaIGeXx1UfdcCupo="; 18 - }) 19 - ]; 20 - 21 14 nativeBuildInputs = [ cmake ]; 22 15 23 16 doInstallCheck = true; ··· 28 21 meta = with lib; { 29 22 description = "A principled, lightweight parser for Windows portable executable files"; 30 23 homepage = "https://github.com/trailofbits/pe-parse"; 24 + changelog = "https://github.com/trailofbits/pe-parse/releases/tag/v${version}"; 31 25 license = licenses.mit; 32 26 maintainers = with maintainers; [ arturcygan ]; 33 27 mainProgram = "dump-pe";