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