hdl-dump: replace commit which doesn't belong to any branch with latest master which changes only CI after several force pushes

+6 -7
+6 -7
pkgs/tools/misc/hdl-dump/default.nix
··· 1 - { lib, stdenv 2 , fetchFromGitHub 3 , upx 4 }: 5 6 - let 7 version = "20202807"; 8 - pname = "hdl-dump"; 9 - in stdenv.mkDerivation { 10 - inherit pname version; 11 12 # Using AkuHAK's repo because playstation2's repo is outdated 13 src = fetchFromGitHub { 14 owner = "AKuHAK"; 15 repo = pname; 16 - rev = "be37e112a44772a1341c867dc3dfee7381ce9e59"; 17 - sha256 = "0akxak6hm11h8z6jczxgr795s4a8czspwnhl3swqxp803dvjdx41"; 18 }; 19 20 buildInputs = [ upx ];
··· 1 + { lib 2 + , stdenv 3 , fetchFromGitHub 4 , upx 5 }: 6 7 + stdenv.mkDerivation rec { 8 + pname = "hdl-dump"; 9 version = "20202807"; 10 11 # Using AkuHAK's repo because playstation2's repo is outdated 12 src = fetchFromGitHub { 13 owner = "AKuHAK"; 14 repo = pname; 15 + rev = "0c98b235c83c0fca1da93648f05ea5f940a4aee0"; 16 + sha256 = "1s3wflqjjlcslpa9n5chr8dbamhmfk88885dzw68apz4vf6g27iq"; 17 }; 18 19 buildInputs = [ upx ];