Merge pull request #105514 from AndersonTorres/update-hdl-dump
hdl-dump: init at 20202807
This commit is contained in:
commit
7f02de17db
35
pkgs/tools/misc/hdl-dump/default.nix
Normal file
35
pkgs/tools/misc/hdl-dump/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, upx
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "20202807";
|
||||||
|
pname = "hdl-dump";
|
||||||
|
in stdenv.mkDerivation {
|
||||||
|
inherit pname version;
|
||||||
|
|
||||||
|
# Using AkuHAK's repo because playstation2's repo is outdated
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "AKuHAK";
|
||||||
|
repo = pname;
|
||||||
|
rev = "be37e112a44772a1341c867dc3dfee7381ce9e59";
|
||||||
|
sha256 = "0akxak6hm11h8z6jczxgr795s4a8czspwnhl3swqxp803dvjdx41";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ upx ];
|
||||||
|
|
||||||
|
makeFlags = [ "RELEASE=yes" ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -Dm755 hdl_dump -t $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/AKuHAK/hdl-dump";
|
||||||
|
description = "PlayStation 2 HDLoader image dump/install utility";
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl2Only;
|
||||||
|
maintainers = with maintainers; [ makefu ];
|
||||||
|
};
|
||||||
|
}
|
@ -21670,6 +21670,8 @@ in
|
|||||||
|
|
||||||
howl = callPackage ../applications/editors/howl { };
|
howl = callPackage ../applications/editors/howl { };
|
||||||
|
|
||||||
|
hdl-dump = callPackage ../tools/misc/hdl-dump { };
|
||||||
|
|
||||||
hpcg = callPackage ../tools/misc/hpcg/default.nix { };
|
hpcg = callPackage ../tools/misc/hpcg/default.nix { };
|
||||||
|
|
||||||
hpl = callPackage ../tools/misc/hpl { mpi = openmpi; };
|
hpl = callPackage ../tools/misc/hpl { mpi = openmpi; };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user