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

This commit is contained in:
Sandro Jäckel 2021-01-26 13:56:41 +01:00
parent 5d4a0aeee5
commit 0b90d29486
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,20 +1,19 @@
{ lib, stdenv { lib
, stdenv
, fetchFromGitHub , fetchFromGitHub
, upx , upx
}: }:
let stdenv.mkDerivation rec {
version = "20202807";
pname = "hdl-dump"; pname = "hdl-dump";
in stdenv.mkDerivation { version = "20202807";
inherit pname version;
# Using AkuHAK's repo because playstation2's repo is outdated # Using AkuHAK's repo because playstation2's repo is outdated
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "AKuHAK"; owner = "AKuHAK";
repo = pname; repo = pname;
rev = "be37e112a44772a1341c867dc3dfee7381ce9e59"; rev = "0c98b235c83c0fca1da93648f05ea5f940a4aee0";
sha256 = "0akxak6hm11h8z6jczxgr795s4a8czspwnhl3swqxp803dvjdx41"; sha256 = "1s3wflqjjlcslpa9n5chr8dbamhmfk88885dzw68apz4vf6g27iq";
}; };
buildInputs = [ upx ]; buildInputs = [ upx ];