hdl-dump: 20202808 -> unstable-2021-08-20, change upstream

Most of the AKuHAK commits were upstreamed to ps2homebrew, that has even
further commits.

Also, removes `upx`. Not necessary anymore.
This commit is contained in:
Thiago Kenji Okada 2021-10-08 16:53:42 -03:00
parent ee084c0204
commit 8f93180aa4

View file

@ -1,23 +1,19 @@
{ lib { lib
, stdenv , stdenv
, fetchFromGitHub , fetchFromGitHub
, upx
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "hdl-dump"; pname = "hdl-dump";
version = "20202807"; version = "unstable-2021-08-20";
# Using AkuHAK's repo because playstation2's repo is outdated
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "AKuHAK"; owner = "ps2homebrew";
repo = pname; repo = pname;
rev = "0c98b235c83c0fca1da93648f05ea5f940a4aee0"; rev = "1e760d7672dc12a36c09690b8c9b20d6642a2926";
sha256 = "1s3wflqjjlcslpa9n5chr8dbamhmfk88885dzw68apz4vf6g27iq"; sha256 = "sha256-NMExi2pUyj8vRn9beT2YvnEogRw/xzgqE+roaZ/vNZs=";
}; };
buildInputs = [ upx ];
makeFlags = [ "RELEASE=yes" ]; makeFlags = [ "RELEASE=yes" ];
installPhase = '' installPhase = ''
@ -25,10 +21,11 @@ stdenv.mkDerivation rec {
''; '';
meta = with lib; { meta = with lib; {
homepage = "https://github.com/AKuHAK/hdl-dump"; homepage = "https://github.com/ps2homebrew/hdl-dump";
description = "PlayStation 2 HDLoader image dump/install utility"; description = "PlayStation 2 HDLoader image dump/install utility";
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.gpl2Only; license = licenses.gpl2Only;
maintainers = with maintainers; [ makefu ]; maintainers = with maintainers; [ makefu ];
mainProgram = "hdl_dump";
}; };
} }