mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
36 lines
797 B
Nix
36 lines
797 B
Nix
{ 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 ];
|
|
};
|
|
}
|