about summary refs log tree commit diff
path: root/pkgs/tools/misc/hdl-dump
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2021-10-08 16:53:42 -0300
committerThiago Kenji Okada <thiagokokada@gmail.com>2021-10-08 16:53:42 -0300
commit8f93180aa40af1c3ba8314e53fbb925e8387d12f (patch)
treecfe9af4fb0d13a3838cdcda306457908a8694896 /pkgs/tools/misc/hdl-dump
parentee084c02040e864eeeb4cf4f8538d92f7c675671 (diff)
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.
Diffstat (limited to 'pkgs/tools/misc/hdl-dump')
-rw-r--r--pkgs/tools/misc/hdl-dump/default.nix15
1 files changed, 6 insertions, 9 deletions
diff --git a/pkgs/tools/misc/hdl-dump/default.nix b/pkgs/tools/misc/hdl-dump/default.nix
index e5f3afb03d573..0d2dfbc504acf 100644
--- a/pkgs/tools/misc/hdl-dump/default.nix
+++ b/pkgs/tools/misc/hdl-dump/default.nix
@@ -1,23 +1,19 @@
 { lib
 , stdenv
 , fetchFromGitHub
-, upx
 }:
 
 stdenv.mkDerivation rec {
   pname = "hdl-dump";
-  version = "20202807";
+  version = "unstable-2021-08-20";
 
-  # Using AkuHAK's repo because playstation2's repo is outdated
   src = fetchFromGitHub {
-    owner = "AKuHAK";
+    owner = "ps2homebrew";
     repo = pname;
-    rev = "0c98b235c83c0fca1da93648f05ea5f940a4aee0";
-    sha256 = "1s3wflqjjlcslpa9n5chr8dbamhmfk88885dzw68apz4vf6g27iq";
+    rev = "1e760d7672dc12a36c09690b8c9b20d6642a2926";
+    sha256 = "sha256-NMExi2pUyj8vRn9beT2YvnEogRw/xzgqE+roaZ/vNZs=";
   };
 
-  buildInputs = [ upx ];
-
   makeFlags = [ "RELEASE=yes" ];
 
   installPhase = ''
@@ -25,10 +21,11 @@ stdenv.mkDerivation rec {
   '';
 
   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";
     platforms = platforms.linux;
     license = licenses.gpl2Only;
     maintainers = with maintainers; [ makefu ];
+    mainProgram = "hdl_dump";
   };
 }