Skip to content

Commit

Permalink
hdl_dump: init at unstable-2019-12-25
Browse files Browse the repository at this point in the history
  • Loading branch information
bignaux committed Feb 3, 2020
1 parent ff478ea commit e38c1fc
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/games/hdl_dump/default.nix
@@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
version = "unstable-2019-12-25";
pname = "hdl_dump";

src = fetchFromGitHub {
owner = "AKuHAK";
repo = "hdl-dump";
rev = "299aec48c5fffe31b0dc3a35d490eeacac3bd066";
sha256 = "18pahyf4c823g4ar6kmz5m8wfkf9gc5lgciqh14ni8qmkb3mc0gg";
};

installPhase = ''
install -Dm755 hdl_dump -t $out/bin
'';

meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "PlayStation 2 HDLoader image dump/install utility";
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ genesis ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -4009,6 +4009,8 @@ in
javac = jdk;
};

hdl_dump = callPackage ../games/hdl_dump { };

hecate = callPackage ../applications/editors/hecate { };

heaptrack = libsForQt5.callPackage ../development/tools/profiling/heaptrack {};
Expand Down

0 comments on commit e38c1fc

Please sign in to comment.