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
, 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 ];