ps3iso-utils: init at 277db7de

This commit is contained in:
Sofi 2023-08-27 04:12:36 +02:00 committed by tomberek
parent 5c2cdd576e
commit cefe605488
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ stdenv
, fetchFromGitHub
, unstableGitUpdater
, lib
}:
stdenv.mkDerivation {
pname = "ps3iso-utils";
version = "277db7de";
src = fetchFromGitHub {
owner = "bucanero";
repo = "ps3iso-utils";
rev = "878090980a9042c61901920fed1b034af215e8c7";
hash = "sha256-HUx5BqHBvVMUHReuJL0RcyxXOnufSt1Zi/ieAlI2eoc=";
};
buildPhase = ''
mkdir -p bin/
find . -type f -name "*.c" -exec \
sh -c 'OFILE=`basename "{}" ".c"` && $CC "{}" -o bin/"$OFILE"' \;
'';
installPhase = ''
mkdir -p $out/bin
cp bin/* $out/bin
'';
passthru.updateScript = unstableGitUpdater { };
meta = with lib; {
description = "Estwald's PS3ISO utilities";
homepage = "https://github.com/bucanero/ps3iso-utils";
license = licenses.gpl3Only;
maintainers = with maintainers; [ soupglasses ];
platforms = platforms.all;
};
}

View file

@ -12205,6 +12205,8 @@ with pkgs;
ps3-disc-dumper = callPackage ../tools/games/ps3-disc-dumper { };
ps3iso-utils = callPackage ../tools/games/ps3iso-utils { };
ps3netsrv = callPackage ../servers/ps3netsrv { };
pscircle = callPackage ../os-specific/linux/pscircle { };