diff options
| author | Nick Cao <nickcao@nichi.co> | 2024-01-04 14:48:26 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-04 14:48:26 -0500 |
| commit | 3505cbb74fad9aa22b750263ea6e9fb28b59fd9e (patch) | |
| tree | 0f3a64cc2162cfc4a69709de0f5ea68da0b9668f | |
| parent | Merge pull request #278721 from NixOS/backport-276254-to-release-23.11 (diff) | |
| parent | upx: 4.2.1 -> 4.2.2 (diff) | |
| download | nixpkgs-3505cbb74fad9aa22b750263ea6e9fb28b59fd9e.tar.gz | |
Merge pull request #278724 from NixOS/backport-278548-to-release-23.11
[Backport release-23.11] upx: 4.2.1 -> 4.2.2
| -rw-r--r-- | pkgs/tools/compression/upx/default.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/compression/upx/default.nix b/pkgs/tools/compression/upx/default.nix index 6c22984b3641..c9a516705b0e 100644 --- a/pkgs/tools/compression/upx/default.nix +++ b/pkgs/tools/compression/upx/default.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "upx"; - version = "4.2.1"; + version = "4.2.2"; src = fetchFromGitHub { owner = "upx"; repo = "upx"; rev = "v${finalAttrs.version}"; fetchSubmodules = true; - sha256 = "sha256-s4cZAb0rhCJrHI//IXLNYLhOzX1NRmN/t5IFgurwI30="; + hash = "sha256-0x7SUW+rB5HNRoRkCQIwfOIMpu+kOifxA7Z3SUlY/ME="; }; nativeBuildInputs = [ cmake ]; @@ -27,6 +27,7 @@ stdenv.mkDerivation (finalAttrs: { meta = with lib; { homepage = "https://upx.github.io/"; description = "The Ultimate Packer for eXecutables"; + changelog = "https://github.com/upx/upx/blob/${finalAttrs.src.rev}/NEWS"; license = licenses.gpl2Plus; platforms = platforms.unix; mainProgram = "upx"; |
