2021-02-13 14:23:35 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-12-03 08:41:04 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
2021-02-13 14:23:35 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-12-03 08:41:04 +00:00
|
|
|
pname = "hdl-dump";
|
2022-10-06 18:32:54 +00:00
|
|
|
version = "unstable-2022-09-19";
|
2020-12-03 08:41:04 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-10-11 16:52:03 +00:00
|
|
|
owner = "ps2homebrew";
|
2020-12-03 08:41:04 +00:00
|
|
|
repo = pname;
|
2022-10-06 18:32:54 +00:00
|
|
|
rev = "87d3099d2ba39a15e86ebc7dc725e8eaa49f2d5f";
|
|
|
|
hash = "sha256-eBqF4OGEaLQXQ4JMtD/Yn+f97RzKVsnC+4oyiEhLTUM=";
|
2020-12-03 08:41:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = [ "RELEASE=yes" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm755 hdl_dump -t $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2021-10-11 16:52:03 +00:00
|
|
|
homepage = "https://github.com/ps2homebrew/hdl-dump";
|
2020-12-03 08:41:04 +00:00
|
|
|
description = "PlayStation 2 HDLoader image dump/install utility";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2Only;
|
|
|
|
maintainers = with maintainers; [ makefu ];
|
2021-10-11 16:52:03 +00:00
|
|
|
mainProgram = "hdl_dump";
|
2020-12-03 08:41:04 +00:00
|
|
|
};
|
|
|
|
}
|