about summary refs log tree commit diff
path: root/pkgs/tools/misc/hdl-dump
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-26 13:56:41 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-26 15:18:57 +0100
commit0b90d2948659a212b40e70f9bc4087cfac856530 (patch)
tree3d72bc212ed95a8a60d1404d6df91258b4e0aea5 /pkgs/tools/misc/hdl-dump
parent5d4a0aeee55635e0c8107933c363377adb0341fd (diff)
hdl-dump: replace commit which doesn't belong to any branch with latest master which changes only CI after several force pushes
Diffstat (limited to 'pkgs/tools/misc/hdl-dump')
-rw-r--r--pkgs/tools/misc/hdl-dump/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/tools/misc/hdl-dump/default.nix b/pkgs/tools/misc/hdl-dump/default.nix
index 6a6af1391bda5..e5f3afb03d573 100644
--- a/pkgs/tools/misc/hdl-dump/default.nix
+++ b/pkgs/tools/misc/hdl-dump/default.nix
@@ -1,20 +1,19 @@
-{ lib, stdenv
+{ lib
+, stdenv
 , fetchFromGitHub
 , upx
 }:
 
-let
-  version = "20202807";
+stdenv.mkDerivation rec {
   pname = "hdl-dump";
-in stdenv.mkDerivation {
-  inherit pname version;
+  version = "20202807";
 
   # Using AkuHAK's repo because playstation2's repo is outdated
   src = fetchFromGitHub {
     owner = "AKuHAK";
     repo = pname;
-    rev = "be37e112a44772a1341c867dc3dfee7381ce9e59";
-    sha256 = "0akxak6hm11h8z6jczxgr795s4a8czspwnhl3swqxp803dvjdx41";
+    rev = "0c98b235c83c0fca1da93648f05ea5f940a4aee0";
+    sha256 = "1s3wflqjjlcslpa9n5chr8dbamhmfk88885dzw68apz4vf6g27iq";
   };
 
   buildInputs = [ upx ];