mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
ps3iso-utils: init at 277db7de
This commit is contained in:
parent
5c2cdd576e
commit
cefe605488
38
pkgs/tools/games/ps3iso-utils/default.nix
Normal file
38
pkgs/tools/games/ps3iso-utils/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user